AdminErrorList
Store errors for the form/formsets in an add/change view.
Constructor
Signature
def AdminErrorList(
form: django.forms.Form,
inline_formsets: list
)
Parameters
| Name | Type | Description |
|---|---|---|
| form | django.forms.Form | The main form instance containing potential errors. |
| inline_formsets | list | A list of inline formsets associated with the main form. |
Signature
def AdminErrorList(
form: django.forms.Form,
inline_formsets: list
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| form | django.forms.Form | The main model form instance being validated in the admin view |
| inline_formsets | list | A list of inline formsets associated with the main form to collect nested validation errors from |