Commit f0e7a695 authored by Duane Hilton's avatar Duane Hilton Committed by Tim Graham
Browse files

[1.7.x] Fixed #17638 -- Added crosslinks between topic and reference guides.

Thanks oinopion for the suggestion and jarus for the initial patch.

Backport of 054bdfef from master
parent f9e8da15
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2,8 +2,8 @@
Built-in Class-based views API
==============================

Class-based views API reference. For introductory material, see
:doc:`/topics/class-based-views/index`.
Class-based views API reference. For introductory material, see the
:doc:`/topics/class-based-views/index` topic guide.

.. toctree::
   :maxdepth: 3
+5 −2
Original line number Diff line number Diff line
====================
=================
Formset Functions
====================
=================

Formset API reference. For introductory material about formsets, see the
:doc:`/topics/forms/formsets` topic guide.

.. module:: django.forms.formsets
   :synopsis: Django's functions for building formsets.
+2 −1
Original line number Diff line number Diff line
@@ -2,7 +2,8 @@
Forms
=====

Detailed form API reference. For introductory material, see :doc:`/topics/forms/index`.
Detailed form API reference. For introductory material, see the
:doc:`/topics/forms/index` topic guide.

.. toctree::
   :maxdepth: 2
+3 −0
Original line number Diff line number Diff line
@@ -2,6 +2,9 @@
Model Form Functions
====================

Model Form API reference. For introductory material about model forms, see the
:doc:`/topics/forms/modelforms` topic guide.

.. module:: django.forms.models
   :synopsis: Django's functions for building model forms and formsets.

+3 −0
Original line number Diff line number Diff line
@@ -28,6 +28,9 @@ output incorrect code.
All of the core Django operations are available from the
``django.db.migrations.operations`` module.

For introductory material, see the :doc:`migrations topic guide
</topics/migrations>`.

Schema Operations
=================

Loading