1 {% extends "base.html" %}
2 {% load i18n pagination_tags %}
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>
14 {% trans "By first letter" %}:
16 <a href='{% url dictionary_notes %}'>{% trans "all" %}</a>
18 <strong>{% trans "all" %}</strong>
21 {% for let in letters %}
23 {% if let == letter %}
24 <strong>{{ let|upper }}</strong>
26 <a href='{% url dictionary_notes let %}'>{{ let|upper }}</a>
34 {% autopaginate object_list 100 %}
36 {% for obj in object_list %}
37 <div class='dictionary-note'>
39 <div class='dictionary-note-source'>
40 (<a href='{% url book_text obj.book.slug %}#{{ obj.anchor }}'>{{ obj.book.pretty_title }}</a>)