changes default filesystem cache location
[wolnelektury.git] / wolnelektury / templates / catalogue / tag_list.html
1 {% load i18n %}
2 {% load catalogue_tags %}
3 {% if one_tag %}
4     <p>{% trans "See full category" %} <a href="{% catalogue_url one_tag %}">{{ one_tag }}</a></p>
5 {% else %}
6     <ul>
7         {% for tag in tags %}
8             <li><a href="{% catalogue_url choices tag %}">{{ tag }}&nbsp;({{ tag.count }})</a></li>
9         {% endfor %}
10     </ul>
11 {% endif %}