bc15e9541d3637951d82c42692c6897e194b0257
[wolnelektury.git] / apps / dictionary / templates / dictionary / note_list.html
1 {% extends "base.html" %}
2 {% load i18n pagination_tags %}
3
4 {% block body %}
5     <h1>Przypisy</h1>
6     <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
7         <p>{{ form.q }} <input type="submit" value="{% trans "Search" %}" /> <strong>{%trans "or" %}</strong> <a href="{% url main_page %}">{% trans "return to the main page" %}</a></p>
8     </form>
9
10
11
12
13 <p>
14 {% trans "By first letter" %}:
15 {% if letter %}
16     <a href='{% url dictionary_notes %}'>{% trans "all" %}</a>
17 {% else %}
18     <strong>{% trans "all" %}</strong>
19 {% endif %}
20
21 {% for let in letters %}
22     |
23     {% if let == letter %}
24         <strong>{{ let|upper }}</strong>
25     {% else %}
26         <a href='{% url dictionary_notes let %}'>{{ let|upper }}</a>
27     {% endif %}
28 {% endfor %}
29 </p>
30 <hr/>
31
32 {% if object_list %}
33
34 {% autopaginate object_list 100 %}
35 {% paginate %}
36 {% for obj in object_list %}
37     <div class='dictionary-note'>
38     {{ obj.html|safe }}
39     <div class='dictionary-note-source'>
40     (<a href='{% url book_text obj.book.slug %}#{{ obj.anchor }}'>{{ obj.book.pretty_title }}</a>)
41     </div>
42     </div>
43 {% endfor %}
44 {% paginate %}
45
46 {% endif %}
47
48 {% endblock %}