1 {% extends "base.html" %}
 
   2 {% load i18n pagination_tags %}
 
   3 {% load catalogue_tags %}
 
   6 {% block bodyid %}footnotes{% endblock %}
 
   8 {% block title %}{% trans "Footnotes on WolneLektury.pl" %}{% endblock %}
 
  12     <h1>{% trans "Footnotes" %}</h1>
 
  17 {% trans "By first letter" %}:
 
  19     <a href='{% url dictionary_notes %}'>{% trans "all" %}</a>
 
  21     <strong>{% trans "all" %}</strong>
 
  24 {% for let in letters %}
 
  26     {% if let == letter %}
 
  27         <strong>{{ let|upper }}</strong>
 
  29         <a href='{% url dictionary_notes let %}'>{{ let|upper }}</a>
 
  36 {% blocktrans count object_list.count as c %}{{c}} footnote found{% plural %}{{c}} footnotes found{% endblocktrans %}
 
  41 {% autopaginate object_list 100 %}
 
  43 {% for obj in object_list %}
 
  44     <div class='dictionary-note'>
 
  46     <div class='dictionary-note-source'>
 
  47     (<a href='{% url book_text obj.book.slug %}#{{ obj.anchor }}'>{{ obj.book.pretty_title }}</a>)