【发布时间】:2014-07-22 06:57:15
【问题描述】:
我有以下架构:
Project/
templates/
aaa/ #This is my application main templates folder
registration/
password_reset_complete.html
password_reset_form.html
password_reset_email.html
password_reset_confirm.html
aaa/
我想移动password_reset模板文件并销毁registration文件夹以获得以下架构:
Project/
templates/
aaa/ #This is my application main templates folder
password_reset_complete.html
password_reset_form.html
password_reset_confirm.html
mails/
password_reset_email.html
aaa/
我想我可以覆盖password_reset_complete、password_reset_form、password_reset_confirm url 模式,但是对于password_reset_email 模板该怎么办?
【问题讨论】:
标签: django url django-templates django-registration