diff options
Diffstat (limited to 'docs/topics')
| -rw-r--r-- | docs/topics/db/models.txt | 6 | ||||
| -rw-r--r-- | docs/topics/migrations.txt | 6 | ||||
| -rw-r--r-- | docs/topics/settings.txt | 5 | ||||
| -rw-r--r-- | docs/topics/templates.txt | 6 |
4 files changed, 23 insertions, 0 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt index c19893f536..a134a94073 100644 --- a/docs/topics/db/models.txt +++ b/docs/topics/db/models.txt @@ -1374,3 +1374,9 @@ different database tables). Django will raise a :exc:`~django.core.exceptions.FieldError` if you override any model field in any ancestor model. + +.. seealso:: + + :doc:`The Models Reference </ref/models/index>` + Covers all the model related APIs including model fields, related + objects, and ``QuerySet``. diff --git a/docs/topics/migrations.txt b/docs/topics/migrations.txt index ce30e0b477..65ae6ac0da 100644 --- a/docs/topics/migrations.txt +++ b/docs/topics/migrations.txt @@ -667,3 +667,9 @@ your Django migrations in the ``migrations`` directory. More information is available in the `South 1.0 release notes <http://south.readthedocs.org/en/latest/releasenotes/1.0.html#library-migration-path>`_. + +.. seealso:: + + :doc:`The Migrations Operations Reference </ref/migration-operations>` + Covers the schema operations API, special operations, and writing your + own operations. diff --git a/docs/topics/settings.txt b/docs/topics/settings.txt index 2024d88a0f..edec6c5ad5 100644 --- a/docs/topics/settings.txt +++ b/docs/topics/settings.txt @@ -267,3 +267,8 @@ It boils down to this: Use exactly one of either ``configure()`` or ``DJANGO_SETTINGS_MODULE``. Not both, and not neither. .. _@login_required: ../authentication/#the-login-required-decorator + +.. seealso:: + + :doc:`The Settings Reference </ref/settings>` + Contains the complete list of core and contrib app settings. diff --git a/docs/topics/templates.txt b/docs/topics/templates.txt index bd59c1a33e..083c0c9a10 100644 --- a/docs/topics/templates.txt +++ b/docs/topics/templates.txt @@ -693,3 +693,9 @@ access to the humanize template tags and filters. The child template is responsible for its own ``{% load humanize %}``. This is a feature for the sake of maintainability and sanity. + +.. seealso:: + + :doc:`The Templates Reference </ref/templates/index>` + Covers built-in tags, built-in filters, using an alternative template, + language, and more. |
