I define an argument which is of string type.
% set my_argument = 'list_from_gae' %}
I would like to pass this as an argument in a for loop:
{% for i in my_argument %}
do sth
{% endfor %}
The string literal of my_argument corresponds to a list passed from a python application. The code above doesn't work, but it does work if i replace my_argument in the for loop with the string literal.
{% for i in list_from_gae %}
do sth
{% endfor %}
How do you make jinja understand that my_argument is a variable and not a string literal?