FormAutoConfig¶
Base class: AutoConfig
Refinable members¶
default_included¶
exclude¶
A list of attribute names to exclude, use __ to drill down to nested attributes. Example: ['album', 'album__year']
include¶
A list of attribute names to include, use __ to drill down to nested attributes. Example: ['album', 'album__year']
See include
instance¶
An instance of a Django model. If this field is specified, the model attribute will be automatically derived. This cannot be a callable, in that case set model and use instance=lambda... instead of auto__instance.
model (evaluated)¶
A Django model class
Type: Type[Model]