1đź‘Ť
âś…
Almost all templates from redux are extending template “registration/registration_base.html”, except of templates for activation (for some reason they are extending directly from “base.html”). Template “registration/registration_base.html” looks literally like this:
{% extends "base.html" %}
So you can override that template (simply by creating “global” template for project on that location) and define here another {% extends %} or your whole new template.
But templates for email activation, as I mentioned above, are extending directly from “base.html” so if you are using them, you must overrite them separately.
👤GwynBleidD
1đź‘Ť
Whenever it bothers you simply replace
{% extends "base.html" %}
with
{% extends "registration/redux_base.html" %}
And ofcourse create redux_base.html
as you wish.
👤Jand
- [Answered ]-Reverse Relationships in Django-Rest framework
- [Answered ]-Django query database and send data to template
- [Answered ]-Finding objects within x miles of a point
- [Answered ]-Getting DUPLICATE error when logging in existing user with Django
- [Answered ]-Python/Django run development server
Source:stackexchange.com