73f9f6ad30dbce977edbbc093671eef8823e43d6
[wolnelektury.git] / src / catalogue / templates / catalogue / snippets / audiobook_list.html
1 {% load catalogue_tags %}
2
3 {% audiobook_tree orphans books_by_parent %}
4 {% for author, group in books_by_author.items %}
5   {% if group %}
6     <a name="{{ author.slug }}"></a>
7     <div class="group">
8       <h2><a href="{{ author.get_absolute_url }}">{{ author }}</a></h2>
9       {% audiobook_tree group books_by_parent %}
10     </div>
11   {% endif %}
12 {% endfor %}