Code layout change.
[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         <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 %}