basic footnotes dictionary
[wolnelektury.git] / apps / dictionary / templates / dictionary / note_list.html
1 {% extends "base.html" %}
2 {% load pagination_tags %}
3
4 {% block body %}
5
6
7 {% autopaginate object_list 100 %}
8 {% paginate %}
9 {% for obj in object_list %}
10     <div class='dictionary-note'>
11     {{ obj.html|safe }}
12     <div class='dictionary-note-source'>
13     (<a href='{% url book_text obj.book.slug %}#{{ obj.anchor }}'>{{ obj.book.pretty_title }}</a>)
14     </div>
15     </div>
16 {% endfor %}
17 {% paginate %}
18
19 {% endblock %}