1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[1.2.X] Fixed #14141: docs now use the :doc: construct for links between documents.

Thanks, Ramiro Morales.

Backport of [13608] from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss
2010-08-19 19:31:56 +00:00
parent c9016c15a9
commit 936203434e
180 changed files with 1222 additions and 1523 deletions

View File

@@ -1,5 +1,3 @@
.. _ref-contrib-formtools-form-wizard:
===========
Form wizard
===========
@@ -10,7 +8,7 @@ Form wizard
.. versionadded:: 1.0
Django comes with an optional "form wizard" application that splits
:ref:`forms <topics-forms-index>` across multiple Web pages. It maintains
:doc:`forms </topics/forms/index>` across multiple Web pages. It maintains
state in hashed HTML :samp:`<input type="hidden">` fields, and the data isn't
processed server-side until the final form is submitted.
@@ -65,8 +63,8 @@ Defining ``Form`` classes
The first step in creating a form wizard is to create the
:class:`~django.forms.Form` classes. These should be standard
:class:`django.forms.Form` classes, covered in the :ref:`forms documentation
<topics-forms-index>`. These classes can live anywhere in your codebase, but
:class:`django.forms.Form` classes, covered in the :doc:`forms documentation
</topics/forms/index>`. These classes can live anywhere in your codebase, but
convention is to put them in a file called :file:`forms.py` in your
application.