Remove unneded executable bits.
[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 %}