Does Django logs usernames internally
All..
I have a Django site and to access it all the users have to go through the login page.
My question is when a user is given a access through the login page to enter the site.Does Django logs the username in any of the Django internal 开发者_JAVA技巧tables....
Thanks.......
Yes, the last_login
column of the user's record in table auth_user
is updated with the date/time of the successful login.
精彩评论