假设我有以下项目:
myproject/
myproject/
__init__.py
settings.py
urls.py
wsgi.py
templates/
base.html
app1/
__init__.py
admin.py
models.py
urls.py
views.py
templates/
base.html
index.html
我想要一个基本模板,所有其他应用程序都将使用它,在myproject/template/base.html
.
然后,我想在app/templates
.
一种选择是写在 myproject/settings.py 中:
TEMPLATE_DIRS = (
"/dir/to/myproject/myproject/templates",
"/dir/to/myproject/app1/templates",
)
但是,这是最好的方法吗?