diff options
| author | Tim Graham <timograham@gmail.com> | 2013-03-30 19:49:31 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-03-30 19:49:31 -0400 |
| commit | b5e1e2ec0320bc5b114b7dbffc8cbf16cefb0a4f (patch) | |
| tree | 22a343d4181c202fcab00e2198cc65586998ca08 /docs | |
| parent | ffc8e2e0ae9f1e35f4b7c78e6235bd0e3ba41aa9 (diff) | |
Fixed some markup in formtools docs.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/formtools/form-wizard.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/contrib/formtools/form-wizard.txt b/docs/ref/contrib/formtools/form-wizard.txt index 0032eeb5d8..f85ae8356d 100644 --- a/docs/ref/contrib/formtools/form-wizard.txt +++ b/docs/ref/contrib/formtools/form-wizard.txt @@ -247,7 +247,7 @@ wizard's ``as_view()`` method takes a list of your .. versionchanged:: 1.6 -You can also pass the form list as a class attribute named ``form_list``. +You can also pass the form list as a class attribute named ``form_list``:: class ContactWizard(WizardView): form_list = [ContactForm1, ContactForm2] @@ -304,8 +304,8 @@ The ``urls.py`` file would contain something like:: .. versionchanged:: 1.6 -The ``condiction_dict`` can be passed as attribute for the ``as_view()`` -method or as a class attribute named ``condition_dict``. +The ``condiction_dict`` can be passed as attribute for the ``as_view()` +method or as a class attribute named ``condition_dict``:: class OrderWizard(WizardView): condition_dict = {'cc': pay_by_credit_card} |
