I'm trying to change the login screen to a new custom screen, but it is not working.
I configured the settings:
'DIRS': [os.path.join(BASE_DIR, 'templates_admin')],
I created folders and templates
But it is not working.
The link documentation states that you just need to create the templates folder / admin / within the app, in my case myproject / core /
In this case, the order of the apps imports.
INSTALLED_APPS = [
# my apps
'myproject.core',
'django.contrib.admin',
...