from django import template register = template.Library() def urchin(uacct): return """ """ % { 'uacct': uacct } register.simple_tag(urchin)