Reduce the ugly, just bootstrap things.
[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     <tr>
17       <td>
18         <a href='{% url "file" file.id %}'>{{ file }}</a>
19       </td>
20     </tr>
21   {% endfor %}
22 {% endblock %}