b958e845b3e12e0d0562441460f1be9128cd7fb1
[wolnelektury.git] / src / catalogue / templates / catalogue / plain_list.html
1 {% spaceless %}
2 {% load catalogue_tags %}
3
4
5 <div class='{% if paged %}plain-list-paged {% endif %}plain-list-container white-box'>
6 <div class='plain-list' style=''>
7 {% for initial, object_list in names %}
8     {% if initial_blocks %}<div class="initial-block">{% endif %}
9     {% if initial %}
10         <p class="header">{{ initial }}</p>
11     {% endif %}
12     {% for item in object_list %}
13         <p><a href="{% if book %}{% url 'book_fragments' book.slug item.slug %}{% elif choice %}{% if gallery %}{% catalogue_url_gallery choice item %}{% else %}{% catalogue_url choice item %}{% endif %}{% elif gallery %}{{ item.get_absolute_gallery_url }}{% else %}{{ item.get_absolute_url }}{% endif %}">{{ item }}{% if item.count %}&nbsp;({{ item.count}}){% endif %}</a></p>
14     {% endfor %}
15     {% if initial_blocks %}</div>{% endif %}
16 {% endfor %}
17 </div>
18     <div class="pagerCenter">
19         <div class="pager"></div>
20     </div>
21 </div>
22
23 {% endspaceless %}