我正在使用django-registration-redux并希望更改模板的样式。为此,我从github获取模板/注册文件夹,并添加到我的文件夹中的模板。如何在我的项目文件夹中告诉django搜索模板
D:\django\blogRodion\blogRodion\blog\templates\registration\
而不是
D:\django\blogRodion\blogRodion\env\lib\site-packages\registration\templates\registration\
答案 0 :(得分:0)
在您的settings.py Django(1.8 +)
中添加以下代码import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
os.path.join(BASE_DIR, 'templates'),
'other_dir_path_to_include'
],
'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',
],
},
},
]
有关详细信息,请参阅:https://docs.djangoproject.com/en/1.9/ref/settings/#std:setting-TEMPLATE_DIRS