[Fixed]-Django: why django.contrib.auth.views.logout not use registration/logged_out.html

1👍

The app directories template loader searches through your app’s template directories in the order of INSTALLED_APPS.

You need to move your app account above django.contrib.admin in your INSTALLED_APPS setting, so that Django finds your custom template before the one from the admin app.

Leave a comment