fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a08b6970b1a3c16e620fecd26df4e968d309ab21
[wolnelektury.git]
/
src
/
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
<li>
5
<ul class="book-list-show-index">
6
{% for author in authors %}
7
<li><a href="#{{ author.slug }}">{{ author }}</a></li>
8
{% endfor %}
9
</ul>
10
</li>
11
</ul>
12
{% endfor %}