django logout redirects me to administration page

前端 未结 11 2110
生来不讨喜
生来不讨喜 2020-12-14 14:32

I have provided a simple login functionality. For logout, I tried to use the built-in one. This is my urls.py:

(r\'\', include(\'django.contrib.auth.urls\'))         


        
11条回答
  •  天命终不由人
    2020-12-14 15:19

    The easiest solution is:

    1. Make sure your app comes before django.contrib.admin under installed apps in settings.py.

    2. Make sure your template is called logged_out.html.

提交回复
热议问题