Reduce the ugly, just bootstrap things.
[audio.git] / src / archive / templates / archive / list_publishing.html
1 {% extends "archive/list.html" %}
2 {% load i18n %}
3
4
5 {% block file-list-title %}
6     {% trans "Audiobooks being published" %}
7 {% endblock %}
8
9
10
11 {% block file-list-wrapper %}
12   {% for k, objects in status_objects %}
13     <h2>{{ k.1 }}</h2>
14     <table class="table">
15       {% for file in objects %}
16         <tr>
17           <td><a href='{% url "file" file.id %}'>{{ file }}</a></td>
18           <td class="text-warning">
19             {% if file.mp3_status == k.0 %}MP3{% endif %}
20           </td>
21           <td class="text-warning">
22             {% if file.ogg_status == k.0 %}Ogg{% endif %}
23           </td>
24         </tr>
25       {% endfor %}
26     </table>
27   {% endfor %}
28 {% endblock %}