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
This commit is contained in:
parent
91f1b08759
commit
a70c04d83b
|
@ -415,7 +415,7 @@ Thus, you can check permissions in template ``{% if %}`` statements::
|
|||
<p>You don't have permission to do anything in the foo app.</p>
|
||||
{% 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
|
||||
|
|
Loading…
Reference in New Issue