1 from django import template
3 register = template.Library()
5 @register.inclusion_tag('archive/tags/multiple_tags_table.html')
6 def multiple_tags_table(tags, table=True):
10 @register.inclusion_tag('archive/tags/tags_table.html')
11 def tags_table(tags, table=True):