I am using Django\'s modelform and its really good. How can I highlight the actual text box (e.g. border:red ) if there is a validation error associated with it. Basically
Try this?
self.fields['field_you_want_to_add_error'].widget.attrs['class'] = "error"