Reduce the ugly, just bootstrap things.
[audio.git] / src / archive / templates / archive / list_new.html
index 28019cd..5e804ca 100644 (file)
@@ -9,14 +9,16 @@
 
 {% 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 %}'>{{ file }}</a>
-        </li>
-    {% endfor %}
+  {% for file in objects %}
+    <tr>
+      <td>
+        <a href='{% url "file_new" file %}'>{{ file }}</a>
+      </td>
+    </tr>
+  {% endfor %}
 {% endblock %}