forms.Form.has_error()
  • References/Python/Django/API/Forms/The Forms API

Form.has_error(field, code=None) This method returns a boolean designating whether a field has an error with a specific error

2025-01-10 15:47:30
forms.Widget.value_from_datadict()
  • References/Python/Django/API/Forms/Widgets

value_from_datadict(data, files, name) [source] Given a dictionary of data and this widget’s

2025-01-10 15:47:30
forms.SlugField.allow_unicode
  • References/Python/Django/API/Forms/Form fields

allow_unicode New in Django 1.9. A boolean

2025-01-10 15:47:30
forms.HiddenInput
  • References/Python/Django/API/Forms/Widgets

class HiddenInput [source] Hidden input: <input type='hidden' ...>

2025-01-10 15:47:30
forms.ModelMultipleChoiceField.to_field_name
  • References/Python/Django/API/Forms/Form fields

to_field_name Same as ModelChoiceField.to_field_name.

2025-01-10 15:47:30
forms.BoundField.is_hidden
  • References/Python/Django/API/Forms/The Forms API

BoundField.is_hidden Returns True if this BoundField‘s widget is hidden.

2025-01-10 15:47:30
forms.Widget.supports_microseconds
  • References/Python/Django/API/Forms/Widgets

supports_microseconds An attribute that defaults to True. If set to False, the microseconds part of

2025-01-10 15:47:30
forms.DecimalField.max_digits
  • References/Python/Django/API/Forms/Form fields

max_digits The maximum number of digits (those before the decimal point plus those after the decimal point, with leading zeros

2025-01-10 15:47:30
forms.Form.errors
  • References/Python/Django/API/Forms/The Forms API

Form.errors Access the errors attribute to get a dictionary of error messages:

2025-01-10 15:47:30
forms.SelectDateWidget.empty_label
  • References/Python/Django/API/Forms/Widgets

empty_label If the

2025-01-10 15:47:30