Form.cleaned_data Each field in a Form class is responsible not only for validating data, but also for “cleaning”
Form.fields You can access the fields of Form instance from its fields attribute:
Form.as_p() as_p() renders the form as a series of <p> tags, with each <p>
BoundField.as_hidden(attrs=None, **kwargs) [source] Returns a string of HTML for representing
BoundField.errors A list-like object that is displayed as an HTML <ul class="errorlist">
Form.auto_id By default, the form rendering methods include: HTML id
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
Form.order_fields(field_order) New in Django 1.9. You
Form.errors.as_json(escape_html=False) Returns the errors serialized as JSON.
Page 1 of 5