authenticate

  • Django tip: Automatic logins

    In the Django documentation we see the following:

    When you're manually logging a user in, you must call authenticate() before you call login().

    That's all really nice, because it makes sure that all your authentication backends are tried out; but if you want a really quick remedy for getting the …

    Read the rest of this entry »