summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorVishal Lal <vish61@gmail.com>2014-04-02 06:14:47 +0000
committerTim Graham <timograham@gmail.com>2014-04-03 08:28:02 -0400
commit1cce00a7620f1882b3b1999e799eb1d3cc65c1ca (patch)
tree780a9b9d21ee84938dad756966f83af1f3db3f1b /docs
parentbd5965ce68c347971dd7b706e3c9b636105b75d1 (diff)
[1.6.x] Fixed #22372 -- Improved description of WizardView.get_context_data().
Thanks simon29 for the report. Backport of a8e2ec0e82 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/formtools/form-wizard.txt9
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 473b17886a..9ec23449e3 100644
--- a/docs/ref/contrib/formtools/form-wizard.txt
+++ b/docs/ref/contrib/formtools/form-wizard.txt
@@ -390,8 +390,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::