i have this code in my template:
{% for action in actions %}
<li>
<a href="{% url {{
action.name}} %}">{{ action.name_short }}</a>
</li>
{% endfor %}
but that's error:
Exception Type: TemplateSyntaxError
Exception Value:
Could not parse the remainder: '{{' from '{{'
i want to use var in {% url {{}} %},can i?
anyone can help me ?