ValidateTransitionNotUsedForm
Overview
The main implementation of all the Form logic. Note that this class is different than Form. See the comments by the Form class for more info. Any improvements to the form API should be made to this class, not to the Form class.
Meta
Source
server/vueda/workflow/forms.py:178
clean
Hook for doing any extra form-wide cleaning after Field.clean() has been called on every field. Any ValidationError raised by this method will not be associated with a particular field; it will have a special-case association with the field named 'all'.
Signature
clean(self)
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| self | yes |
Source
server/vueda/workflow/forms.py:186
_meta
base_fields
declared_fields
media
Return all media required to render the widgets on this form.
Source
.venv/lib/python3.11/site-packages/django/forms/widgets.py:241
Source
server/vueda/workflow/forms.py:177