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>
15 {% trans "By first letter" %}:
17 <a href='{% url dictionary_notes %}'>{% trans "all" %}</a>
19 <strong>{% trans "all" %}</strong>
22 {% for let in letters %}
24 {% if let == letter %}
25 <strong>{{ let|upper }}</strong>
27 <a href='{% url dictionary_notes let %}'>{{ let|upper }}</a>
34 {% blocktrans count object_list.count as c %}{{c}} footnote found{% plural %}{{c}} footnotes found{% endblocktrans %}
39 {% autopaginate object_list 100 %}
41 {% for obj in object_list %}
42 <div class='dictionary-note'>
44 <div class='dictionary-note-source'>
45 (<a href='{% url book_text obj.book.slug %}#{{ obj.anchor }}'>{{ obj.book.pretty_title }}</a>)