正如问题所说,我正在使用django-registration-redux并且我已经为注册电子邮件和页面制作了模板,但无法弄清楚如何为重置密码制作模板电子邮件。 我使用的是django 1.9
答案 0 :(得分:3)
根据itzmeontv的回答:
覆盖registration
应用程序中的原始模板。
templates
(如果不存在)registration
。所以文件夹看起来像<yourapp>/templates/registration
yourapp/templates/registration
内,创建与registration
app中名称相同的htmls。例如:password_change_form.html
。所以它看起来像<yourapp>/templates/registration/password_change_form.html
。确保您的基础应用程序位于registration
中的INSTALLED_APPS
之前。
答案 1 :(得分:2)
覆盖registration
应用程序中的原始模板。
registration
templates
registration
registration
。所以文件夹看起来像registration/templates/registration
registration/templates/registration
内,创建与registration
app中名称相同的htmls。例如:password_change_form.html
。所以它看起来像registration/templates/registration/password_change_form.html
。然后检查password_change_form.html
。现在就做你想做的事。希望这有帮助。