detail page getting shape
[wolnelektury.git] / wolnelektury / templates / catalogue / inline_tag_list.html
1 {% load i18n %}
2 {% load catalogue_tags %}
3 {% if one_tag %}
4     {% trans "See full category" %} <a href="{% catalogue_url one_tag %}">{{ one_tag }}</a>
5 {% else %}
6     {% for tag in tags %}
7         <a href="{% catalogue_url choices tag %}">{{ tag }}&nbsp;({{ tag.book_count }})</a>
8     {% endfor %}
9 {% endif %}