missing file
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Mon, 8 Aug 2011 11:45:54 +0000 (13:45 +0200)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Mon, 8 Aug 2011 11:45:54 +0000 (13:45 +0200)
apps/archive/templates/archive/list_publishing.html [new file with mode: 0755]

diff --git a/apps/archive/templates/archive/list_publishing.html b/apps/archive/templates/archive/list_publishing.html
new file mode 100755 (executable)
index 0000000..1c220d8
--- /dev/null
@@ -0,0 +1,23 @@
+{% extends "archive/list.html" %}
+{% load i18n %}
+
+
+{% block file-list-title %}
+    {% trans "Audiobooks being published" %}
+{% endblock %}
+
+
+
+{% block file-list-wrapper %}
+    {% for k, objects in objects_by_status.items %}
+        <h2>{{ k.1 }}</h2>
+        <ul>
+            {% for file in objects %}
+            <li>
+                <a href='{% url file file.id %}'>{{ file }}</a>
+                ({% if file.mp3_status = k.0 %}MP3{% if file.ogg_status = k.0 %}, {% endif %}{% endif %}{% if file.ogg_status = k.0 %}Ogg{% endif %})
+            </li>
+            {% endfor %}
+        </ul>
+    {% endfor %}
+{% endblock %}