diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/formtools/form-wizard.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/ref/contrib/formtools/form-wizard.txt b/docs/ref/contrib/formtools/form-wizard.txt index 054c027ea8..7cb39b498d 100644 --- a/docs/ref/contrib/formtools/form-wizard.txt +++ b/docs/ref/contrib/formtools/form-wizard.txt @@ -401,8 +401,13 @@ Advanced ``WizardView`` methods The default template context variables are: * Any extra data the storage backend has stored - * ``form`` -- form instance of the current step - * ``wizard`` -- the wizard instance itself + * ``wizard`` -- a dictionary representation of the wizard instance with the + following key/values: + + * ``form`` -- :class:`~django.forms.Form` or + :class:`~django.forms.formsets.BaseFormSet` instance for the current step + * ``steps`` -- A helper object to access the various steps related data + * ``management_form`` -- all the management data for the current step Example to add extra variables for a specific step:: |
