mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
Fix for Django 1.5: {% url %} parameter needs to be quoted
This commit is contained in:
parent
0be7d5e41f
commit
8ce56e8190
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue