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='{% url "dictionary_notes" %}'>{% 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='{% url "dictionary_notes" let %}'>{{ let|upper }}</a>
35 {% blocktrans count object_list.count as c %}{{c}} footnote found{% plural %}{{c}} footnotes found{% endblocktrans %}
40 {% autopaginate object_list 100 %}
42 {% for obj in object_list %}
43 <div class='dictionary-note'>
45 <div class='dictionary-note-source'>
46 (<a href='{% url "book_text" obj.book.slug %}#{{ obj.anchor }}'>{{ obj.book.pretty_title }}</a>)