From 3e132406e3a95b3fe54e75129013e10bf3e9e86a Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 28 Mar 2015 07:49:03 -0400 Subject: [PATCH] Fixed syntax highlighting in docs/topics/auth/default.txt --- docs/topics/auth/default.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt index 8a9062f6cd0..141114129b5 100644 --- a/docs/topics/auth/default.txt +++ b/docs/topics/auth/default.txt @@ -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