我试过了链接中的说明,将默认应用程序模板替换为特定于我的网站的模板。
具体来说,我设置了以下文件结构:
project_specific_app
-templates
--userena
---files_with_same_names_as_userena_templates.html
模板目录:
TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
)
但是,当我尝试更改“files_with_same_name_as_userena_templates.html”的内容并重新启动网络服务器时,网页不会改变
我还忘记了什么?
解决方案:在我的 project/settings.py 中查看 TEMPLATE_DIRS 并将其更改为 /absolute/path/to/project/specific/app/templates/ 我的自定义模板有效。