remove to archive,
[audio.git] / apps / archive / templatetags / tags.py
index 25389ef..1067a4d 100755 (executable)
@@ -4,7 +4,13 @@ register = template.Library()
 
 @register.inclusion_tag('archive/tags/multiple_tags_table.html')
 def multiple_tags_table(tags, table=True):
-    return locals()
+    new_tags = {}
+    for k, v in tags.items():
+        if isinstance(v, list):
+            new_tags[k] = v
+        else:
+            new_tags[k] = [v]
+    return {"tags": new_tags, "table": table}
 
 
 @register.inclusion_tag('archive/tags/tags_table.html')