fix #2052: wrong tag counters in tagged list
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Fri, 13 Apr 2012 11:58:27 +0000 (13:58 +0200)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Tue, 17 Apr 2012 10:27:36 +0000 (12:27 +0200)
apps/catalogue/templates/catalogue/inline_tag_list.html

index 52e92c4..cd48c3e 100755 (executable)
@@ -4,8 +4,14 @@
     {% trans "See full category" %} <a href="{% catalogue_url one_tag %}">{{ one_tag }}</a>
 {% else %}
        <ul>
-    {% for tag in tags %}
-        <li><a href="{% catalogue_url choices tag %}">{{ tag }}&nbsp;({{ tag.book_count }})</a></li>
-    {% endfor %}
+       {% if choices %}
+        {% for tag in tags %}
+            <li><a href="{% catalogue_url choices tag %}">{{ tag }}&nbsp;({{ tag.count }})</a></li>
+        {% endfor %}
+        {% else %}
+        {% for tag in tags %}
+            <li><a href="{{ tag.get_absolute_url }}">{{ tag }}&nbsp;({{ tag.book_count }})</a></li>
+        {% endfor %}
+    {% endif %}
     </ul>
 {% endif %}