使用这样的模板目录结构:
awesome_app_name/
templates/
awesome_app_name/
base.html
cool_template.html
这允许某人使用以下方式扩展您的模板:
{% extends 'awesome_app_name/cool_template.html' %}
或者他们可以像这样用自己的模板交换它:
my_app_name/
templates/
my_app_name/
my_template.html
awesome_app_name/
cool_template.html <-- this overloads your template with their own
这使得共享包中的模板非常灵活。
编辑:
如果您使用项目的模板目录和app_directories.Loader 模板加载器配置 django,则此方法有效。我相信这是大多数人使用的配置:
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)
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.
os.path.join(PROJECT_DIR, 'templates'),
)
然后按以下顺序加载模板:
- 从项目目录解析模板
- 从应用目录解析模板
这是一个遵循此结构的示例项目:https ://github.com/brutasse/django-password-reset