I'm trying to override the templates of django-two-factor-auth for Django Admin but I don't know how to do it. *I don't have frontend with Django. Instead, I have frontend with Next.js
and backend with Django.
This is my django project:
django-project
|-core
| |-settings.py
| └-urls.py
|-my_app1
| |-models.py
| |-admin.py
| └-urls.py
└-templates
And, how I set django-two-factor-auth
following the doc is first, I installed django-two-factor-auth[phonenumbers]
:
pip install django-two-factor-auth[phonenumbers]
Then, set these apps below to INSTALLED_APPS, OTPMiddleware
to MIDDLEWARE, LOGIN_URL and LOGIN_REDIRECT_URL in core/settings.py
as shown below:
# "core/settings.py"
INSTALLED_APPS = [
...
'django_otp', # Here
'django_otp.plugins.otp_static', # Here
'django_otp.plugins.otp_totp', # Here
'two_factor' # Here
]
...
MIDDLEWARE = [
...
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django_otp.middleware.OTPMiddleware', # Here
...
]
LOGIN_URL = 'two_factor:login' # Here
# this one is optional
LOGIN_REDIRECT_URL = 'admin:index' # Here
...
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
BASE_DIR / 'templates',
],
...
},
]
Then, set the path below to core/urls.py
:
# "core/urls.py"
...
from two_factor.urls import urlpatterns as tf_urls
urlpatterns = [
...
path('', include(tf_urls)) # Here
]
Finally, migrate:
python manage.py migrate
And, this is Login page:
http://localhost:8000/account/login/
My questions:
- How can I override the templates of
django-two-factor-auth
for Django Admin? - Are there any recommended customizations for the templates of
django-two-factor-auth
for Django Admin?
You can override the templates of django-two-factor-auth for Django Admin by copying two_factor folder from
two_factor/templates/two_factor/
in your virtual environment totemplates
folder as shown below:Finally, set
BASE_DIR / 'templates'
to DIRS in TEMPLATES insettings.py
as shown below. *My answer explains how to set Django Templates:In addition, I recommend to modify _base.html as shown below to remove
Provide a template named ...
message and to add Home button to go to Home page in Django Admin:And, I recommend to modify login.html as shown below to automatically redirect to Home page in Django Admin if authenticated and the user is staff and to add Go to normal login page and Go to two factor setup page buttons:
Now, this is Login page:
And, this is Account Security page: