Long story short I'm curious if there is any way to pull the the value of an obj within a for loop to a custom template tag?
I currently have
{% for OBJ in OBJ_LIST %}
{% TAG 'string_value' OBJ %}
{% endfor %}
trick is I get 'OBJ'
which when run through either
obj = template.Variable(objname)
obj = template.resolve_variable(objname, context)
doesn't register the variable within a for loop
curious if there is any type of work around?