5e61ba12fe8950c3fcdf96bdcd2e4cb698c82a85
[audio.git] / src / archive / templates / archive / list_published.html
1 {% extends "archive/list.html" %}
2 {% load i18n %}
3
4
5 {% block file-list-title %}
6     {% trans "Published audiobooks" %}
7 {% endblock %}
8
9
10 {% block file-list-info %}
11 {% endblock %}
12
13
14 {% block file-list %}
15     {% for file in objects %}
16         <li>
17             <a href='{% url "file" file.id %}'>{{ file }}</a>
18         </li>
19     {% endfor %}
20 {% endblock %}