Author: russellm
Date: 2010-08-07 02:58:58 -0500 (Sat, 07 Aug 2010)
New Revision: 13545

Modified:
   django/branches/releases/1.2.X/docs/ref/contrib/formtools/form-wizard.txt
Log:
[1.2.X] Fixed #8567 -- Clarified the process of instantiating FormWizards. 
Thanks to ClaesBas for the suggestion, and ElliotM and timo for draft text.

Backport of r13543 from trunk.

Modified: 
django/branches/releases/1.2.X/docs/ref/contrib/formtools/form-wizard.txt
===================================================================
--- django/branches/releases/1.2.X/docs/ref/contrib/formtools/form-wizard.txt   
2010-08-07 07:58:38 UTC (rev 13544)
+++ django/branches/releases/1.2.X/docs/ref/contrib/formtools/form-wizard.txt   
2010-08-07 07:58:58 UTC (rev 13545)
@@ -189,8 +189,10 @@
 Hooking the wizard into a URLconf
 =================================
 
-Finally, give your new :class:`FormWizard` object a URL in ``urls.py``. The
-wizard takes a list of your :class:`~django.forms.Form` objects as arguments::
+Finally, we need to specify which forms to use in the wizard, and then
+deploy the new :class:`FormWizard` object a URL in ``urls.py``. The
+wizard takes a list of your :class:`~django.forms.Form` objects as
+arguments when you instantiate the Wizard::
 
     from django.conf.urls.defaults import *
     from mysite.testapp.forms import ContactForm1, ContactForm2, ContactWizard

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to