diff options
| author | Tim Graham <timograham@gmail.com> | 2013-02-23 15:26:41 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-02-23 15:26:41 -0500 |
| commit | 9b97f01dea093de484366924842c89550472d0b6 (patch) | |
| tree | da1fd06ec1927d625e5c50117cd2b52d8b0c6893 /docs | |
| parent | 31bcb102b24338e5cc0e69ade997e8fdc257b6b5 (diff) | |
Fixed #19880 - Fixed an error in the form wizard initial_dict example.
Thanks almalki for the report.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/formtools/form-wizard.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/ref/contrib/formtools/form-wizard.txt b/docs/ref/contrib/formtools/form-wizard.txt index ee9114acf9..bcffb7716b 100644 --- a/docs/ref/contrib/formtools/form-wizard.txt +++ b/docs/ref/contrib/formtools/form-wizard.txt @@ -537,7 +537,9 @@ Providing initial data for the forms ... '0': {'subject': 'Hello', 'sender': 'user@example.com'}, ... '1': {'message': 'Hi there!'} ... } - >>> wiz = ContactWizard.as_view([ContactForm1, ContactForm2], initial_dict=initial) + >>> # This example is illustrative only and isn't meant to be run in + >>> # the shell since it requires an HttpRequest to pass to the view. + >>> wiz = ContactWizard.as_view([ContactForm1, ContactForm2], initial_dict=initial)(request) >>> form1 = wiz.get_form('0') >>> form2 = wiz.get_form('1') >>> form1.initial |
