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