1 {% extends "base.html" %}
2 {% load i18n pagination_tags %}
5 {% block bodyid %}footnotes{% endblock %}
7 {% block titleextra %}{% trans "Footnotes" %}{% endblock %}
11 <h1>{% trans "Footnotes" %}</h1>
13 <div class="normal-text">
16 {% trans "By first letter" %}:
18 <a href='?'>{% trans "all" %}</a>
20 <strong>{% trans "all" %}</strong>
23 {% for let in letters %}
25 {% if let == letter %}
26 <strong>{{ let|upper }}</strong>
28 <a href='?ltr={{ let }}'>{{ let|upper }}</a>
34 {% trans "By type" %}:
36 <a href='?'>{% trans "all" %}</a>
38 <strong>{% trans "all" %}</strong>
41 {% for fnt in fn_types %}
43 {% if fnt == fn_type %}
44 <strong>{{ fnt }}</strong>
46 <a href='?type={{ fnt }}'>{{ fnt }}</a>
53 {% trans "By qualifier" %}:
55 <a href='?'>{% trans "all" %}</a>
57 <strong>{% trans "all" %}</strong>
60 {% for qual in qualifiers %}
62 {% if qual == qualifier %}
63 <strong>{{ qual }}</strong>
65 <a href='?qual={{ qual|urlencode }}'>{{ qual }}</a>
71 {% trans "By language" %}:
73 <a href='?'>{% trans "all" %}</a>
75 <strong>{% trans "all" %}</strong>
78 {% for lang in languages %}
80 {% if lang == language %}
81 <strong>{{ lang }}</strong>
83 <a href='?lang={{ lang }}'>{{ lang }}</a>
91 {% blocktrans count object_list.count as c %}{{c}} footnote found{% plural %}{{c}} footnotes found{% endblocktrans %}
94 {% if object_list.exists %}
96 {% autopaginate object_list 100 %}
98 {% for obj in object_list %}
99 <div class='dictionary-note'>
101 {% for note_source in obj.notesource_set.all %}
102 <div class='dictionary-note-source'>
103 <a href='{% url "book_text" note_source.book.slug %}#{{ note_source.anchor }}'>{{ note_source.book.pretty_title }}</a>
104 (<a href='{{ note_source.book.extra_info.about }}'>źródło na Platformie Redakcyjnej</a>)