BoundField.errors A list-like object that is displayed as an HTML <ul class="errorlist">
Form.cleaned_data Each field in a Form class is responsible not only for validating data, but also for “cleaning”
BoundField.as_hidden(attrs=None, **kwargs) [source] Returns a string of HTML for representing
Form.as_p() as_p() renders the form as a series of <p> tags, with each <p>
Form.auto_id By default, the form rendering methods include: HTML id
Form.fields You can access the fields of Form instance from its fields attribute:
BoundField.css_classes() [source] When you use Django’s rendering shortcuts, CSS classes
BoundField.label_tag(contents=None, attrs=None, label_suffix=None) [source] To separately
BoundField.html_name The name that will be used in the widget’s HTML name attribute. It takes the form prefix
Form.required_css_class It’s pretty common to style form rows and fields that are required or have errors. For example, you
Page 1 of 5