summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBrian Rosner <brosner@gmail.com>2008-06-16 15:41:20 +0000
committerBrian Rosner <brosner@gmail.com>2008-06-16 15:41:20 +0000
commit032e092ecf3df1101d19eb1aacb7b1a5e5ee7e85 (patch)
treeae5e06811695b153f6378fdfb1cd26ffa873ff83 /docs
parent10c7129eb09750ec4045c7d41bb3f3ae0dfb483a (diff)
newforms-admin: Fixed #7445 -- Removed an old reference to oldforms in the auth documentation. Thanks peterd12.
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7663 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/authentication.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/authentication.txt b/docs/authentication.txt
index 00cb8e45ca..d0df43d6a8 100644
--- a/docs/authentication.txt
+++ b/docs/authentication.txt
@@ -516,8 +516,8 @@ It's your responsibility to provide the login form in a template called
``registration/login.html`` by default. This template gets passed three
template context variables:
- * ``form``: A ``FormWrapper`` object representing the login form. See the
- `forms documentation`_ for more on ``FormWrapper`` objects.
+ * ``form``: A ``Form`` object representing the login form. See the
+ `newforms documentation`_ for more on ``Form`` objects.
* ``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
@@ -557,7 +557,7 @@ block::
{% endblock %}
-.. _forms documentation: ../forms/
+.. _newforms documentation: ../newforms/
.. _site framework docs: ../sites/
Other built-in views