lemoncurry/lemonauth/templatetags/lemonauth_tags.py

9 lines
170 B
Python

from django import template
register = template.Library()
@register.inclusion_tag('lemonauth/tags/form_field.html')
def form_field(field):
return {'field': field}