summaryrefslogtreecommitdiff
path: root/docs/authentication.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-05-22 04:48:44 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-05-22 04:48:44 +0000
commite3839f32e5c3c9492c0a29b3af4da28f38a3ccda (patch)
tree8c5d3274d20c47e86b794b3d4a9851aa519447d6 /docs/authentication.txt
parentd31f190239e9236cbfdd0900a89cff68b606e764 (diff)
Added docs/sites.txt -- documentation on the sites framework
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2958 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/authentication.txt')
-rw-r--r--docs/authentication.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/authentication.txt b/docs/authentication.txt
index 6a0c6ffffb..4f1276f691 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -355,7 +355,7 @@ variables:
* ``next``: The URL to redirect to after successful login. This may contain
a query string, too.
* ``site_name``: The name of the current ``Site``, according to the
- ``SITE_ID`` setting.
+ ``SITE_ID`` setting. See the `site framework docs`_.
Here's a sample ``registration/login.html`` template you can use as a starting
point. It assumes you have a ``base.html`` template that defines a ``content``
@@ -382,6 +382,7 @@ block::
{% endblock %}
.. _forms documentation: http://www.djangoproject.com/documentation/forms/
+.. _site framework docs: http://www.djangoproject.com/documentation/sites/
Limiting access to logged-in users that pass a test
---------------------------------------------------