forms.models.inlineformset_factory()
  • References/Python/Django/API/Forms/Model Form Functions

inlineformset_factory(parent_model, model, form=ModelForm, formset=BaseInlineFormSet, fk_name=None, fields=None, exclude=None, extra=3, can_order=False, can_delete=True

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

Field.widget The widget argument lets you specify a Widget class to use when rendering this Field

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

class BooleanField(**kwargs) [source] Default widget:

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

input_formats A list of formats used to attempt to convert a string to a valid datetime.date object.

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

Field.label The label argument lets you specify the “human-friendly” label for this field. This is used when the

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

class CheckboxSelectMultiple [source] Similar to SelectMultiple, but rendered

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

BoundField.field The form

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

months An optional dict of months to use in the “months” select box. The keys of the dict correspond

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

class NullBooleanSelect [source] Select widget with options ‘Unknown’, ‘Yes’ and ‘No’

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

class RegexField(**kwargs) [source] Default widget:

2025-01-10 15:47:30