-
-
Save janusnic/2f4e1668d623891e3186c3bbf87205dd to your computer and use it in GitHub Desktop.
Django template filter to add attributes to form fields
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From http://vanderwijk.info/blog/adding-css-classes-formfields-in-django-templates/#comment-1193609278 | |
from django import template | |
register = template.Library() | |
@register.filter(name='add_attributes') | |
def add_attributes(field, css): | |
attrs = {} | |
definition = css.split(',') | |
for d in definition: | |
if ':' not in d: | |
attrs['class'] = d | |
else: | |
t, v = d.split(':') | |
attrs[t] = v | |
return field.as_widget(attrs=attrs) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment