From a70c04d83ba029dd09adb6b0df8fb18292591b74 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 12 Nov 2005 18:15:26 +0000 Subject: [PATCH] Fixed #774 -- Fixed typos in docs/authentication.txt. Thanks, footless and jbennett git-svn-id: http://code.djangoproject.com/svn/django/trunk@1199 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/authentication.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/authentication.txt b/docs/authentication.txt index e0780902c1..e813f78e11 100644 --- a/docs/authentication.txt +++ b/docs/authentication.txt @@ -415,7 +415,7 @@ Thus, you can check permissions in template ``{% if %}`` statements::

You don't have permission to do anything in the foo app.

{% endif %} -.. _template context: http://www.djangoproject.com/documentation/models/templates_python/ +.. _template context: http://www.djangoproject.com/documentation/templates_python/ Groups ====== @@ -458,7 +458,7 @@ a playlist:: # Create the playlist with the given songs. # ... request.user.add_message("Your playlist was added successfully.") - return render_to_response("playlists/create", context_instance=DjangoContext) + return render_to_response("playlists/create", context_instance=DjangoContext(request)) When you use ``DjangoContext``, the currently logged-in user and his/her messages are made available in the `template context`_ as the template variable