1
0
mirror of https://github.com/django/django.git synced 2025-07-06 10:49:17 +00:00

[1.2.X] Makes links to form and field validation (and form reference docs in general) more readily available from form topic overview. Thanks to john_fries for the report.

Backport of [14112] from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14113 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gabriel Hurley 2010-10-10 07:09:57 +00:00
parent 95d0ffbb0f
commit 1322968409
2 changed files with 8 additions and 5 deletions

View File

@ -5,7 +5,7 @@ Forms
Detailed form API reference. For introductory material, see :doc:`/topics/forms/index`. Detailed form API reference. For introductory material, see :doc:`/topics/forms/index`.
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 2
api api
fields fields

View File

@ -5,8 +5,9 @@ Working with forms
.. admonition:: About this document .. admonition:: About this document
This document provides an introduction to Django's form handling features. This document provides an introduction to Django's form handling features.
For a more detailed look at the forms API, see :doc:`/ref/forms/api`. For For a more detailed look at specific areas of the forms API, see
documentation of the available field types, see :doc:`/ref/forms/fields`. :doc:`/ref/forms/api`, :doc:`/ref/forms/fields`, and
:doc:`/ref/forms/validation`.
.. highlightlang:: html+django .. highlightlang:: html+django
@ -388,7 +389,7 @@ Further topics
This covers the basics, but forms can do a whole lot more: This covers the basics, but forms can do a whole lot more:
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 2
modelforms modelforms
formsets formsets
@ -396,4 +397,6 @@ This covers the basics, but forms can do a whole lot more:
.. seealso:: .. seealso::
The :doc:`form API reference </ref/forms/index>`. :doc:`The Forms Reference </ref/forms/index>`
Covers the full API reference, including form fields, form widgets,
and form and field validation.