reformat templates
[wolnelektury.git] / src / catalogue / templates / catalogue / snippets / book_list_nav.html
index 258824d..a08b697 100755 (executable)
@@ -1,10 +1,12 @@
 {% for index, authors in books_nav.items %}
-    <ul>
-        <li><a class="book-list-index" href="#">{{ index|upper }}</a></li>
-        <ul class="book-list-show-index">
-        {% for author in authors %}
-            <li><a href="#{{ author.slug }}">{{ author }}</a></li>
-        {% endfor %}
-        </ul>
-    </ul>
+  <ul>
+    <li><a class="book-list-index" href="#">{{ index|upper }}</a></li>
+    <li>
+      <ul class="book-list-show-index">
+      {% for author in authors %}
+        <li><a href="#{{ author.slug }}">{{ author }}</a></li>
+      {% endfor %}
+      </ul>
+    </li>
+  </ul>
 {% endfor %}