Commit be865fe6 authored by Tim Graham's avatar Tim Graham
Browse files

[1.7.x] Fixed syntax highlighting in docs/topics/auth/default.txt

Backport of 3e132406 from master
parent bd542cbf
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -313,8 +313,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:

@@ -351,8 +353,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