25389efe708b1178d3f050d471936c83f029ffad
[audio.git] / apps / archive / templatetags / tags.py
1 from django import template
2
3 register = template.Library()
4
5 @register.inclusion_tag('archive/tags/multiple_tags_table.html')
6 def multiple_tags_table(tags, table=True):
7     return locals()
8
9
10 @register.inclusion_tag('archive/tags/tags_table.html')
11 def tags_table(tags, table=True):
12     return locals()