fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
258824df38fa64ba50829c3b51d24c7fac078e98
[wolnelektury.git]
/
apps
/
catalogue
/
templates
/
catalogue
/
snippets
/
book_list_nav.html
1
{% for index, authors in books_nav.items %}
2
<ul>
3
<li><a class="book-list-index" href="#">{{ index|upper }}</a></li>
4
<ul class="book-list-show-index">
5
{% for author in authors %}
6
<li><a href="#{{ author.slug }}">{{ author }}</a></li>
7
{% endfor %}
8
</ul>
9
</ul>
10
{% endfor %}