我正在通過django中的custum模板處理其他密碼,但是自定義模板沒有加載它,每當我加載/ password_reset/url時都會加載django的默認模板。在密碼重置視圖自定義模板不加載?
我使用的URL
url('^', include('django.contrib.auth.urls')),
我在模板的註冊文件夾,並使用這個鏈接工作 https://simpleisbetterthancomplex.com/tutorial/2016/09/19/how-to-create-password-reset-view.html
和模板文件夾是:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.dirname(os.path.dirname(os.path.abspath(__file__))),
],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
"cms.utils.context_processors.permission_based_hidding_of_sidebar",
],
'libraries':{
'template_tag': 'cms.templatetags.template_tag',
'template_tag_time': 'cms.templatetags.tags',
}
},
},
]
安裝應用程序在設置中: -
INSTALLED_APPS = [
'cms',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django_extensions',
'django_csv_exports',
'django.contrib.auth',
'django.contrib.admin',
]
你有沒有建立在你的目錄'password_reset'模板文件? –
是的,我在我的模板中有一個註冊文件夾,我已經創建了password_reset.html模板 –
您可以在您的問題中包含您的項目結構嗎?我也想知道你的註冊文件夾在哪裏? –