I\'ve been doing some custom forms with django but I don\'t get how to access attributes that a specific form field has attached via the forms.py.
def putErrorIn
In other cases it can can be useful to set and get field attributes.
Setting in form's init function:
self.fields['some_field'].widget.attrs['readonly'] = True
... and accessing it in a template:
{{ form.some_field.field.widget.attrs.readonly }}