Fixed syntax highlighting in docs/topics/auth/default.txt

This commit is contained in:
Tim Graham 2015-03-28 07:49:03 -04:00
parent 19e41a9799
commit 3e132406e3
1 changed files with 4 additions and 0 deletions

View File

@ -309,8 +309,10 @@ You can tell them apart with
if request.user.is_authenticated():
# Do something for authenticated users.
...
else:
# Do something for anonymous users.
...
.. _how-to-log-a-user-in:
@ -347,8 +349,10 @@ If you have an authenticated user you want to attach to the current session
# Redirect to a success page.
else:
# Return a 'disabled account' error message
...
else:
# Return an 'invalid login' error message.
...
.. admonition:: Calling ``authenticate()`` first