When a form in Django has validation errors, the errors are given in a list with class errorlist.
Elements can be given an error style with Bootstrap by setting class="alert alert-error".
What is the best way to combine these, and use Bootstrap’s error style for validation errors on Django forms?
In Twitter Bootstrap, input elements are enclosed between
"control-group"divorfieldset. So I would do something like this in templateNote: In bootstrap,
class="alert alert-error"seems to be for alert messages and not for field specific errors.