Folding of taq lists on main page.
[wolnelektury.git] / wolnelektury / templates / catalogue / folded_tag_list.html
1 {% load catalogue_tags %}
2 {% if one_tag %}
3     <p>Zobacz całą kategorię <a href="{% catalogue_url one_tag %}">{{ one_tag }}</a>.</p>
4 {% else %}
5     <div class="shown-tags">
6         <ul class="shown-tags">
7             {% for tag in shown_tags %}
8                 <li><a href="{% catalogue_url choices tag %}">{{ tag }}&nbsp;({{ tag.count }})</a></li>
9             {% endfor %}
10         </ul>
11         {% if some_tags_hidden %}
12             <p><a href="#" class="show-all-tags">[Zobacz wszystkie]</a></p>
13         {% endif %}
14     </div>
15     <ul class="all-tags">
16         {% for tag in tags %}
17             <li><a href="{% catalogue_url choices tag %}">{{ tag }}&nbsp;({{ tag.count }})</a></li>
18         {% endfor %}      
19     </ul>    
20 {% endif %}