Class ModelChoiceField
A ChoiceField whose choices are a model QuerySet.
Declaration
source linkDocumentation
Methods
▶ def __init__(self, queryset, *, empty_label="---------", required=True, widget=None, ...) override def __init__(
self,
queryset,
*,
empty_label="---------",
required=True,
widget=None,
label=None,
initial=None,
help_text='',
to_field_name=None,
limit_choices_to=None,
blank=False,
**kwargs,
)
This method overrides django.forms.fields.ChoiceField.__init__.
Overrides
This method is overriden in:
If it is a callable, invoke it and return the result.
▶ def has_changed(self, initial, data) overrideinherited doc Return True if data differs from initial.
▷ def label_from_instance(self, obj) Convert objects into strings and generate the labels for the choices presented by this object. Subclasses can override this method to customize the display of the choices.
▶ def to_python(self, value) overrideinherited doc Return a string.
▶ def validate(self, value) overrideinherited doc Validate that the input is in self.choices.