Skip to content

Commit

Permalink
Fix for Django 1.5: {% url %} parameter needs to be quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
coordt committed Mar 20, 2013
1 parent 0be7d5e commit 8ce56e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion categories/templates/categories/ul_tree.html
Original file line number Diff line number Diff line change
@@ -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>
Expand Down

0 comments on commit 8ce56e8

Please sign in to comment.