class documentation

class BaseForm(RenderableFormMixin):

Known subclasses: django.forms.forms.Form, django.forms.models.BaseModelForm

View In Hierarchy

The main implementation of all the Form logic. Note that this class is different than Form. See the comments by the Form class for more info. Any improvements to the form API should be made to this class, not to the Form class.
Method __getitem__ Return a BoundField with the given name.
Method __init__ Undocumented
Method __iter__ Yield the form's fields as BoundField objects.
Method __repr__ Undocumented
Method ​_bound​_items Yield (name, bf) pairs, where bf is a BoundField object.
Method ​_clean​_fields Undocumented
Method ​_clean​_form Undocumented
Method ​_html​_output Output HTML. Used by as_table(), as_ul(), as_p().
Method ​_post​_clean An internal hook for performing additional cleaning after form cleaning is complete. Used for model validation in model forms.
Method ​_widget​_data​_value Undocumented
Method add​_error Update the content of self._errors.
Method add​_initial​_prefix Add an 'initial' prefix for checking dynamic initial values.
Method add​_prefix Return the field name with a prefix appended, if this Form has a prefix set.
Method clean No summary
Method full​_clean Clean all of self.data and populate self._errors and self.cleaned_data.
Method get​_context Undocumented
Method get​_initial​_for​_field Return initial data for field on form. Use initial data from the form or the field, in that order. Evaluate callable values.
Method has​_changed Return True if data differs from initial.
Method has​_error Undocumented
Method hidden​_fields Return a list of all the BoundField objects that are hidden fields. Useful for manual form layout in templates.
Method is​_multipart Return True if the form needs to be multipart-encoded, i.e. it has FileInput, or False otherwise.
Method is​_valid Return True if the form has no errors, or False otherwise.
Method non​_field​_errors Return an ErrorList of errors that aren't associated with a particular field -- i.e., from Form.clean(). Return an empty ErrorList if there are none.
Method order​_fields Rearrange the fields according to field_order.
Method visible​_fields Return a list of BoundField objects that aren't hidden fields. The opposite of the hidden_fields() method.
Class Variable default​_renderer Undocumented
Class Variable field​_order Undocumented
Class Variable template​_name Undocumented
Class Variable template​_name​_label Undocumented
Class Variable template​_name​_p Undocumented
Class Variable template​_name​_table Undocumented
Class Variable template​_name​_ul Undocumented
Instance Variable ​_bound​_fields​_cache Undocumented
Instance Variable ​_errors Undocumented
Instance Variable auto​_id Undocumented
Instance Variable cleaned​_data Undocumented
Instance Variable data Undocumented
Instance Variable empty​_permitted Undocumented
Instance Variable error​_class Undocumented
Instance Variable fields Undocumented
Instance Variable files Undocumented
Instance Variable initial Undocumented
Instance Variable is​_bound Undocumented
Instance Variable label​_suffix Undocumented
Instance Variable prefix Undocumented
Instance Variable renderer Undocumented
Instance Variable use​_required​_attribute Undocumented
Property changed​_data Undocumented
Property errors Return an ErrorDict for the data provided for the form.
Property media Return all media required to render the widgets on this form.

Inherited from RenderableFormMixin:

Method as​_p Render as <p> elements.
Method as​_table Render as <tr> elements excluding the surrounding <table> tag.
Method as​_ul Render as <li> elements excluding the surrounding <ul> tag.

Inherited from RenderableMixin (via RenderableFormMixin):

Method render Undocumented
def __getitem__(self, name):
Return a BoundField with the given name.
def __init__(self, data=None, files=None, auto_id='id_%s', prefix=None, initial=None, error_class=ErrorList, label_suffix=None, empty_permitted=False, field_order=None, use_required_attribute=None, renderer=None):
def __iter__(self):
Yield the form's fields as BoundField objects.
def __repr__(self):

Undocumented

def _bound_items(self):
Yield (name, bf) pairs, where bf is a BoundField object.
def _clean_fields(self):

Undocumented

def _clean_form(self):

Undocumented

def _html_output(self, normal_row, error_row, row_ender, help_text_html, errors_on_separate_row):
Output HTML. Used by as_table(), as_ul(), as_p().
def _post_clean(self):
An internal hook for performing additional cleaning after form cleaning is complete. Used for model validation in model forms.
def _widget_data_value(self, widget, html_name):

Undocumented

def add_error(self, field, error):

Update the content of self._errors.

The field argument is the name of the field to which the errors should be added. If it's None, treat the errors as NON_FIELD_ERRORS.

The error argument can be a single error, a list of errors, or a dictionary that maps field names to lists of errors. An "error" can be either a simple string or an instance of ValidationError with its message attribute set and a "list or dictionary" can be an actual list or dict or an instance of ValidationError with its error_list or error_dict attribute set.

If error is a dictionary, the field argument must be None and errors will be added to the fields that correspond to the keys of the dictionary.

def add_initial_prefix(self, field_name):
Add an 'initial' prefix for checking dynamic initial values.
def add_prefix(self, field_name):

Return the field name with a prefix appended, if this Form has a prefix set.

Subclasses may wish to override.

def clean(self):
Hook for doing any extra form-wide cleaning after Field.clean() has been called on every field. Any ValidationError raised by this method will not be associated with a particular field; it will have a special-case association with the field named '__all__'.
def full_clean(self):
Clean all of self.data and populate self._errors and self.cleaned_data.
def get_context(self):
def get_initial_for_field(self, field, field_name):
Return initial data for field on form. Use initial data from the form or the field, in that order. Evaluate callable values.
def has_changed(self):
Return True if data differs from initial.
def has_error(self, field, code=None):

Undocumented

def hidden_fields(self):
Return a list of all the BoundField objects that are hidden fields. Useful for manual form layout in templates.
def is_multipart(self):
Return True if the form needs to be multipart-encoded, i.e. it has FileInput, or False otherwise.
def is_valid(self):
Return True if the form has no errors, or False otherwise.
def non_field_errors(self):
Return an ErrorList of errors that aren't associated with a particular field -- i.e., from Form.clean(). Return an empty ErrorList if there are none.
def order_fields(self, field_order):

Rearrange the fields according to field_order.

field_order is a list of field names specifying the order. Append fields not included in the list in the default order for backward compatibility with subclasses not overriding field_order. If field_order is None, keep all fields in the order defined in the class. Ignore unknown fields in field_order to allow disabling fields in form subclasses without redefining ordering.

def visible_fields(self):
Return a list of BoundField objects that aren't hidden fields. The opposite of the hidden_fields() method.
default_renderer =

Undocumented

field_order =
template_name: str =

Undocumented

template_name_label: str =

Undocumented

template_name_p: str =

Undocumented

template_name_table: str =

Undocumented

template_name_ul: str =

Undocumented

_bound_fields_cache: dict =

Undocumented

_errors =

Undocumented

auto_id =

Undocumented

cleaned_data =

Undocumented

data =

Undocumented

empty_permitted =

Undocumented

error_class =

Undocumented

fields =
files =

Undocumented

initial =

Undocumented

is_bound =

Undocumented

label_suffix =

Undocumented

prefix =

Undocumented

renderer =

Undocumented

use_required_attribute =

Undocumented

@cached_property
changed_data =
@property
errors =
Return an ErrorDict for the data provided for the form.
@property
media =
Return all media required to render the widgets on this form.