When I use allauth, everything works fine, except that Django can no longer find static files. Without allauth, all static files are displayed. allauth settings need to be added
TEMPLATE_CONTEXT_PROCESSORS = ( "allauth.context_processors.allauth", "allauth.account.context_processors.account" )
I did not have TEMPLATE_CONTEXT_PROCESSORS in my settings file before. Is there something I'm missing? How do I solve this problem. When I see the DEBUG console, I see that it is trying to extract the css file as
"GET /accounts/login/css/contact.css"
then how should he do
"GET /static/css/contact.css"
source share