1 {% extends "archive/list.html" %}
5 {% block file-list-title %}
6 {% trans "Unpublished audiobooks" %}
10 {% block file-list-info %}
15 {% for file in objects %}
18 <a href='{% url "file" file.id %}'>{{ file }}</a>
21 {% if file.mp3_published %}
22 <span class="text-success" title="{{ file.mp3_published }}">MP3</span>
24 {% if file.mp3_status %}
25 <span class="text-warning" title="{{ file.get_mp3_status_display }}">MP3</span>
30 {% if file.ogg_published %}
31 <span class="text-success" title="{{ file.ogg_published }}">Ogg</span>
33 {% if file.ogg_status %}
34 <span class="text-warning" title="{{ file.get_ogg_status_display }}">Ogg</span>