[Answered ]-Base.html for Django Registration Redux

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

Leave a comment