Form.prefix You can put several Django forms inside one <form> tag. To give each Form its own
Form.clean() Implement a clean() method on your Form when you must add custom validation for fields
Form.errors.as_data() Returns a dict that maps fields to their original ValidationError instances
Form.non_field_errors() This method returns the list of errors from Form.errors that aren’t associated with a particular
Form.as_ul() as_ul() renders the form as a series of <li> tags, with each <li>
Form.as_table() Finally, as_table() outputs the form as an HTML <table>. This is exactly the
BoundField.value() [source] Use this method to render the raw value of this field as it would
Form.error_css_class
BoundField.is_hidden Returns True if this BoundField‘s widget is hidden.
class Form [source] To create an unbound Form instance, simply instantiate the
Page 4 of 5