+<p>
+{% trans "By first letter" %}:
+{% if letter %}
+ <a href='{% url "dictionary_notes" %}'>{% trans "all" %}</a>
+{% else %}
+ <strong>{% trans "all" %}</strong>
+{% endif %}
+
+{% for let in letters %}
+ |
+ {% if let == letter %}
+ <strong>{{ let|upper }}</strong>
+ {% else %}
+ <a href='{% url "dictionary_notes" let %}'>{{ let|upper }}</a>
+ {% endif %}
+{% endfor %}
+</p>
+<hr/>
+
+<p>
+{% blocktrans count object_list.count as c %}{{c}} footnote found{% plural %}{{c}} footnotes found{% endblocktrans %}
+</p>
+
+{% if object_list.exists %}