X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/e9f8a9269b64a5af7c95d6c2714b1ae97e68d6a1..357027375ff8867f42ca34bcbfb5a78b5b185fc3:/apps/dictionary/templates/dictionary/note_list.html diff --git a/apps/dictionary/templates/dictionary/note_list.html b/apps/dictionary/templates/dictionary/note_list.html deleted file mode 100755 index 097457eda..000000000 --- a/apps/dictionary/templates/dictionary/note_list.html +++ /dev/null @@ -1,56 +0,0 @@ -{% extends "base.html" %} -{% load i18n pagination_tags %} - - -{% block bodyid %}footnotes{% endblock %} - -{% block titleextra %}{% trans "Footnotes" %}{% endblock %} - - -{% block body %} -

{% trans "Footnotes" %}

- -
- -

-{% trans "By first letter" %}: -{% if letter %} - {% trans "all" %} -{% else %} - {% trans "all" %} -{% endif %} - -{% for let in letters %} - | - {% if let == letter %} - {{ let|upper }} - {% else %} - {{ let|upper }} - {% endif %} -{% endfor %} -

-
- -

-{% blocktrans count object_list.count as c %}{{c}} footnote found{% plural %}{{c}} footnotes found{% endblocktrans %} -

- -{% if object_list %} - -{% autopaginate object_list 100 %} -{% paginate %} -{% for obj in object_list %} -
- {{ obj.html|safe }} - -
-{% endfor %} -{% paginate %} - -{% endif %} - -
- -{% endblock %}