From 876013dc1205335bd6396e68fb9f8953b971fb73 Mon Sep 17 00:00:00 2001 From: Gabriel Hurley Date: Sun, 10 Oct 2010 07:08:35 +0000 Subject: [PATCH] Fixed #10027 -- 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. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14112 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/forms/index.txt | 2 +- docs/topics/forms/index.txt | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/ref/forms/index.txt b/docs/ref/forms/index.txt index 610416a363..866afed6dc 100644 --- a/docs/ref/forms/index.txt +++ b/docs/ref/forms/index.txt @@ -5,7 +5,7 @@ Forms Detailed form API reference. For introductory material, see :doc:`/topics/forms/index`. .. toctree:: - :maxdepth: 1 + :maxdepth: 2 api fields diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt index f845586ab4..30b09c00a9 100644 --- a/docs/topics/forms/index.txt +++ b/docs/topics/forms/index.txt @@ -5,8 +5,9 @@ Working with forms .. admonition:: About this document 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 - documentation of the available field types, see :doc:`/ref/forms/fields`. + For a more detailed look at specific areas of the forms API, see + :doc:`/ref/forms/api`, :doc:`/ref/forms/fields`, and + :doc:`/ref/forms/validation`. .. highlightlang:: html+django @@ -388,7 +389,7 @@ Further topics This covers the basics, but forms can do a whole lot more: .. toctree:: - :maxdepth: 1 + :maxdepth: 2 modelforms formsets @@ -396,4 +397,6 @@ This covers the basics, but forms can do a whole lot more: .. seealso:: - The :doc:`form API reference `. + :doc:`The Forms Reference ` + Covers the full API reference, including form fields, form widgets, + and form and field validation.