Generally working version.
[wolnelektury.git] / src / catalogue / templates / catalogue / tag_box.html
1 {% spaceless %}
2 {% load i18n %}
3 {% load catalogue_tags %}
4 <div class="white-box normal-text">
5     <h2>{% trans tag.category as c %}{{ c|capfirst }}: {{ tag }}</h2>
6     {% if tag.description %}
7     {{ tag.description|safe|truncatewords_html:40 }}
8     {% else %}
9     <em>No description</em>
10     {% endif %}
11
12 </div>
13 {% endspaceless %}