TEMPLATE_DIRS = ('/path/to/templates/',)
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
)
TEMPLATE_DIRS
我正在尝试找到一种解决方案,该解决方案可以在这些位置(或TEMPLATE_LOADERS
)中的任何一个中列出我指定目录的内容。
我需要类似的东西:
template_files = []
for dir in EVERY_DIRECTORY_DJANGO_LOOKS_FOR_TEMPLATES_IN:
template_files.append(os.listdir(dir))