link to polski.
[wolnelektury.git] / apps / dictionary / templates / dictionary / note_list.html
index bc15e95..6eac93a 100755 (executable)
@@ -1,14 +1,16 @@
 {% extends "base.html" %}
 {% load i18n pagination_tags %}
 
-{% block body %}
-    <h1>Przypisy</h1>
-    <form action="{% url search %}" method="get" accept-charset="utf-8" id="search-form">
-        <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>
-    </form>
 
+{% block bodyid %}footnotes{% endblock %}
+
+{% block titleextra %}{% trans "Footnotes" %}{% endblock %}
 
 
+{% block body %}
+    <h1>{% trans "Footnotes" %}</h1>
+
+<div class="normal-text">
 
 <p>
 {% trans "By first letter" %}:
 </p>
 <hr/>
 
+<p>
+{% blocktrans count object_list.count as c %}{{c}} footnote found{% plural %}{{c}} footnotes found{% endblocktrans %}
+</p>
+
 {% if object_list %}
 
 {% autopaginate object_list 100 %}
@@ -45,4 +51,6 @@
 
 {% endif %}
 
+</div>
+
 {% endblock %}