rearrangements: new core app, templates in apps, split settings;
[wolnelektury.git] / apps / catalogue / 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         <ul>
7     {% for tag in tags %}
8         <li><a href="{% catalogue_url choices tag %}">{{ tag }}&nbsp;({{ tag.book_count }})</a></li>
9     {% endfor %}
10     </ul>
11 {% endif %}