Why second user login redirects me to /accounts/profile/ url?

前端 未结 7 2486
忘掉有多难
忘掉有多难 2021-02-03 19:13

I am using Django built in view for user login:

url(r\'^user/login/$\', \'django.contrib.auth.views.login\', {\'template_name\': \'users/templates/login.html\'},         


        
7条回答
  •  天涯浪人
    2021-02-03 19:37

    django.contrib.auth.views.login redirects you to accounts/profile/ right after you log in.
    You may want to set LOGIN_REDIRECT_URL inside your settings.py file to anything you like..

提交回复
热议问题