Reorganize code.
[audio.git] / src / archive / templates / archive / tags / multiple_tags_table.html
diff --git a/src/archive/templates/archive/tags/multiple_tags_table.html b/src/archive/templates/archive/tags/multiple_tags_table.html
new file mode 100755 (executable)
index 0000000..4609278
--- /dev/null
@@ -0,0 +1,9 @@
+{% if table %}<table class='multiple_tags'>{% endif %}
+    {% for t, v in tags.items %}
+        <tr><th>{{ t }}</th><td>
+        {% for x in v %}
+            <div>{{ x|linebreaksbr }}</div>
+        {% endfor %}
+        </td></tr>
+    {% endfor %}
+{% if table %}</table>{% endif %}