Sunday, April 3, 2016

Re: django template {% url %}

On Sun, Apr 3, 2016 at 11:50 AM, 颜刚 <yangang_q@163.com> wrote:
>
>
> 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 ?

You don't need {{ }} around action.name if you're referencing it
inside of a {% %} block

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CACwCsY5-DksTLRupfmqo7cNuC4OOy78Dvq-x1fJXSs3jigp9iQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment