d7f599274ef0bb2ff65f8c1e13a1471c8de9038f
[wolnelektury.git] / apps / 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 %}