summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2011-08-13 13:51:34 +0000
committerJannis Leidel <jannis@leidel.info>2011-08-13 13:51:34 +0000
commita13de6cd76b12da0520ddccb2d746dd73eb70d28 (patch)
treefdf79db448b5c29d3f9638ddec07d01b705f45cc /docs
parent566b3295fa77e9755613ac36e0d73950938cc577 (diff)
Fixed #6644 -- Fixed django.contrib.formtools tests to be better isolated when running outside of the Django test suite. Also moved around the new wizard's templates a bit to better fit the common app layout.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16616 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/formtools/form-wizard.txt2
-rw-r--r--docs/ref/contrib/index.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/contrib/formtools/form-wizard.txt b/docs/ref/contrib/formtools/form-wizard.txt
index 036c42cdd2..2645c28a32 100644
--- a/docs/ref/contrib/formtools/form-wizard.txt
+++ b/docs/ref/contrib/formtools/form-wizard.txt
@@ -51,7 +51,7 @@ you just have to do these things:
generic template to handle every one of the forms, or you can define a
specific template for each form.
- 4. Add ``django.contrib.formtools.wizard`` to your
+ 4. Add ``django.contrib.formtools`` to your
:setting:`INSTALLED_APPS` list in your settings file.
5. Point your URLconf at your :class:`WizardView` :meth:`~WizardView.as_view` method.
diff --git a/docs/ref/contrib/index.txt b/docs/ref/contrib/index.txt
index f62c8fc36e..37216468b9 100644
--- a/docs/ref/contrib/index.txt
+++ b/docs/ref/contrib/index.txt
@@ -102,7 +102,7 @@ An abstraction of the following workflow:
See the :doc:`form preview documentation </ref/contrib/formtools/form-preview>`.
django.contrib.formtools.wizard
---------------------------------
+-------------------------------
Splits forms across multiple Web pages.