2 {% load catalogue_tags %}
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 %}
10 <p class="header">{{ initial }}</p>
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 %} ({{ item.count}}){% endif %}</a></p>
15 {% if initial_blocks %}</div>{% endif %}
18 <div class="pagerCenter">
19 <div class="pager"></div>