the field helper can take extra <input> attributes

This commit is contained in:
Jeff Balogh 2010-08-27 14:41:07 -07:00
Родитель 16bb09d763
Коммит 758db4f22f
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -296,11 +296,12 @@ def license_link(license):
@register.function
def field(field, label=None):
def field(field, label=None, **attrs):
if label is not None:
field.label = label
return jinja2.Markup(u'%s<p>%s%s</p>' %
(field.errors, field.label_tag(), field))
(field.errors, field.label_tag(),
field.as_widget(attrs=attrs)))
@register.inclusion_tag('amo/category-arrow.html')