Different handling of current payment view,
[wolnelektury.git] / apps / dictionary / templates / dictionary / note_list.html
index aad0ddf..097457e 100755 (executable)
 {% block body %}
     <h1>{% trans "Footnotes" %}</h1>
 
+<div class="normal-text">
 
 <p>
 {% trans "By first letter" %}:
 {% if letter %}
-    <a href='{% url dictionary_notes %}'>{% trans "all" %}</a>
+    <a href='{% url "dictionary_notes" %}'>{% trans "all" %}</a>
 {% else %}
     <strong>{% trans "all" %}</strong>
 {% endif %}
@@ -24,7 +25,7 @@
     {% if let == letter %}
         <strong>{{ let|upper }}</strong>
     {% else %}
-        <a href='{% url dictionary_notes let %}'>{{ let|upper }}</a>
+        <a href='{% url "dictionary_notes" let %}'>{{ let|upper }}</a>
     {% endif %}
 {% endfor %}
 </p>
@@ -42,7 +43,7 @@
     <div class='dictionary-note'>
     {{ obj.html|safe }}
     <div class='dictionary-note-source'>
-    (<a href='{% url book_text obj.book.slug %}#{{ obj.anchor }}'>{{ obj.book.pretty_title }}</a>)
+    (<a href='{% url "book_text" obj.book.slug %}#{{ obj.anchor }}'>{{ obj.book.pretty_title }}</a>)
     </div>
     </div>
 {% endfor %}
@@ -50,4 +51,6 @@
 
 {% endif %}
 
+</div>
+
 {% endblock %}