Start to reorganize views a little.
[audio.git] / src / archive / templates / archive / list_unpublished.html
diff --git a/src/archive/templates/archive/list_unpublished.html b/src/archive/templates/archive/list_unpublished.html
deleted file mode 100755 (executable)
index b901ef0..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-{% extends "archive/list.html" %}
-{% load i18n %}
-
-
-{% block file-list-title %}
-    {% trans "Unpublished audiobooks" %}
-{% endblock %}
-
-
-{% block file-list-info %}
-{% endblock %}
-
-
-{% block file-list %}
-    {% for file in objects %}
-        <li>
-            <a href='{% url "file" file.id %}'>{{ file }}</a>
-
-            {% if file.mp3_published %}
-                <span class="list-published-tag" title="{{ file.mp3_published }}">MP3</span>
-            {% else %}{% if file.mp3_status %}
-                <span class="list-publishing-tag" title="{{ file.get_mp3_status_display }}">MP3</span>
-            {% endif %}{% endif %}
-
-            {% if file.ogg_published %}
-                <span class="list-published-tag" title="{{ file.ogg_published }}">Ogg</span>
-            {% else %}{% if file.ogg_status %}
-                <span class="list-publishing-tag" title="{{ file.get_ogg_status_display }}">Ogg</span>
-            {% endif %}{% endif %}
-        </li>
-    {% endfor %}
-{% endblock %}