Locatizations.
[wolnelektury.git] / src / catalogue / templates / catalogue / tag_catalogue.html
1 {% extends 'base.html' %}
2 {% load i18n %}
3 {% load thumbnail %}
4
5
6 {% block settings %}
7 {% endblock %}
8
9 {% block breadcrumbs %}
10   <span>{{ whole_category }}</span>
11 {% endblock %}
12
13
14 {% block main %}
15   <div class="l-section">
16     <div class="l-author__header">
17       <h1>{{ whole_category }}</h1>
18     </div>
19   </div>
20
21   <div class="l-search-bar">
22     <div class="l-search-bar__input">
23       <i class="icon icon-filter"></i>
24       <input type="text" placeholder="{% trans 'filtry, tytuł' %}" class="quick-filter" data-for="tag-list">
25     </div>
26   </div>
27
28
29   <div class="l-section l-taglist">
30     <ul id="tag-list">
31       {% for tag in tags %}
32         <li>
33           {% if tag.photo %}
34             {% thumbnail tag.photo '40x40' crop='top' as thumb %}
35             <img src="{{ thumb.url }}" class="c-avatar">
36             {% endthumbnail %}
37           {% endif %}
38           <a class="s" href="{{ tag.get_absolute_url }}">{{ tag }} ({{ tag.count }})</a>
39         </li>
40       {% endfor %}
41     </ul>
42  </div>
43
44
45 {% endblock %}