Loading django/contrib/formtools/wizard/views.py +1 −2 Original line number Diff line number Diff line Loading @@ -538,8 +538,7 @@ class WizardView(TemplateView): context variables are: * all extra data stored in the storage backend * `form` - form instance of the current step * `wizard` - the wizard instance itself * `wizard` - a dictionary representation of the wizard instance Example: Loading docs/ref/contrib/formtools/form-wizard.txt +7 −2 Original line number Diff line number Diff line Loading @@ -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:: Loading Loading
django/contrib/formtools/wizard/views.py +1 −2 Original line number Diff line number Diff line Loading @@ -538,8 +538,7 @@ class WizardView(TemplateView): context variables are: * all extra data stored in the storage backend * `form` - form instance of the current step * `wizard` - the wizard instance itself * `wizard` - a dictionary representation of the wizard instance Example: Loading
docs/ref/contrib/formtools/form-wizard.txt +7 −2 Original line number Diff line number Diff line Loading @@ -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:: Loading