Start to reorganize views a little.
[audio.git] / src / archive / templates / archive / list_new.html
index fabf446..b7ca11d 100644 (file)
@@ -2,6 +2,10 @@
 {% load i18n %}
 
 
+{% block menu-active-new %}active{% endblock %}
+
+
+
 {% block file-list-title %}
     {% trans "New audiobooks" %}
 {% endblock %}
 
 {% block file-list-info %}
     {% trans "Put source audiobooks in:" %}
-    <span>{{ path }}</span>
+    <tt>{{ path }}</tt>
 {% endblock %}
 
 
 {% block file-list %}
-    {% for file in objects %}
-        <li>
-            <a href='{% url "file_new" file|urlencode %}'>{{ file }}</a>
-        </li>
-    {% endfor %}
+  {% for file in objects %}
+    <tr>
+      <td>
+        <a href='{% url "file_new" file %}'>{{ file }}</a>
+      </td>
+    </tr>
+  {% endfor %}
 {% endblock %}