BoundField.auto_id The HTML ID attribute for this BoundField. Returns an empty string if Form.auto_id
Form.use_required_attribute New in Django 1.10. When
Form.initial Use initial to declare the initial value of form fields at runtime. For example, you might want to
Form.has_error(field, code=None) This method returns a boolean designating whether a field has an error with a specific error
BoundField.label The
BoundField.form The Form instance this BoundField is bound to.
BoundField.name The name of this field in the form: >>>
BoundField.data This property returns the data for this BoundField extracted by the widget’s
Form.is_bound If you need to distinguish between bound and unbound form instances at runtime, check the value of the form’s
Form.prefix You can put several Django forms inside one <form> tag. To give each Form its own
Page 3 of 5