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.as_ul()
  • References/Python/Django/API/Forms/The Forms API

Form.as_ul() as_ul() renders the form as a series of <li> tags, with each <li>

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.SelectMultiple
  • References/Python/Django/API/Forms/Widgets

class SelectMultiple [source] Similar to Select, but allows multiple selection:

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

Form.non_field_errors() This method returns the list of errors from Form.errors that aren’t associated with a particular

2025-01-10 15:47:30
forms.Field.has_changed()
  • References/Python/Django/API/Forms/Form fields

Field.has_changed() [source] The has_changed() method is used to determine if

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

class Form [source] To create an unbound Form instance, simply instantiate the

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

protocol Limits valid inputs to the specified protocol. Accepted values are both (default), IPv4 or

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

render(name, value, attrs=None) [source] Argument value is handled differently

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