Fix for Django 1.5: {% url %} parameter needs to be quoted

This commit is contained in:
Corey Oordt 2013-03-20 06:50:28 -05:00
parent 0be7d5e41f
commit 8ce56e8190

View file

@ -1,5 +1,5 @@
{% load category_tags %}{% spaceless %}
<ul><li><a href="{% url categories_tree_list %}">Top</a>
<ul><li><a href="{% url 'categories_tree_list' %}">Top</a>
{% for node,structure in path|tree_info %}
{% if structure.new_level %}<ul><li>
{% else %}</li><li>