1
0
mirror of https://github.com/django/django.git synced 2025-07-21 10:09:14 +00:00

[1.0.x] Fixed #11508: Adding missing word to form wizard doc. Thanks thepointer and timo.

r11444 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@11445 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Karen Tracey 2009-08-13 17:01:31 +00:00
parent 6922ebadbc
commit b72d6cf0f6

View File

@ -95,7 +95,7 @@ Creating a ``FormWizard`` class
The next step is to create a :class:`~django.contrib.formtools.wizard.FormWizard` The next step is to create a :class:`~django.contrib.formtools.wizard.FormWizard`
class, which should be a subclass of ``django.contrib.formtools.wizard.FormWizard``. class, which should be a subclass of ``django.contrib.formtools.wizard.FormWizard``.
As your :class:`~django.forms.forms.Form` classes, this As with your :class:`~django.forms.forms.Form` classes, this
:class:`~django.contrib.formtools.wizard.FormWizard` class can live anywhere :class:`~django.contrib.formtools.wizard.FormWizard` class can live anywhere
in your codebase, but convention is to put it in :file:`forms.py`. in your codebase, but convention is to put it in :file:`forms.py`.