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
Form.auto_id By default, the form rendering methods include: HTML id
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:
BoundField.errors A list-like object that is displayed as an HTML <ul class="errorlist">
Form.changed_data The changed_data attribute returns a list of the names of the fields whose values in the form’s
Form.order_fields(field_order) New in Django 1.9. You
BoundField.html_name The name that will be used in the widget’s HTML name attribute. It takes the form prefix
BoundField.label_tag(contents=None, attrs=None, label_suffix=None) [source] To separately
Page 1 of 5