Disable login_required.
[audio.git] / apps / archive / templatetags / tags.py
index 25389ef..8e208a6 100755 (executable)
@@ -4,9 +4,18 @@ register = template.Library()
 
 @register.inclusion_tag('archive/tags/multiple_tags_table.html')
 def multiple_tags_table(tags, table=True):
-    return locals()
+    new_tags = {}
+    if 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')
 def tags_table(tags, table=True):
+    if tags is None:
+        tags = {}
     return locals()