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

Form.is_valid() The primary task of a Form object is to validate data. With a bound Form instance

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

decompress(value) [source] This method takes a single “compressed” value from the field and

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

recursive If False (the default) only the direct contents of path will be offered as choices. If True

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

Form.as_table() Finally, as_table() outputs the form as an HTML <table>. This is exactly the

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

Field.get_bound_field(form, field_name) [source] Takes an instance of Form and

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

Form.clean() Implement a clean() method on your Form when you must add custom validation for fields

2025-01-10 15:47:30