2017-02-05 48 views

回答

1

您可以在您的設置中配置TEMPLATESDocumentation

TEMPLATES = [ 
    { 
     'BACKEND': 'django.template.backends.django.DjangoTemplates', 
     'DIRS': [], # Here, add your path to folder templates 
     'APP_DIRS': True, 
     'OPTIONS': { 
      # ... some options here ... 
     }, 
    }, 
] 

如果您的設置文件位於項目的根文件夾中。如果你有一個線

django.template.loaders.app_directories 
附近的模板加載設置文件

地方

'DIRS': [os.path.join(BASE_DIR, 'templates')], 
0

檢查:你可以寫DIRS這樣。如果你有它評論它。

如果您不指定任何地方的TEMPLATE_LOADERS,默認情況下,django將加載app_directories加載器。 總之,你想在某個地方,在你的settings.py:

TEMPLATE_LOADERS = ['django.template.loaders.filesystem.Loader', 
# 'django.template.loaders.app_directories.Loader' 
] 

然後配置模板,如在the documentation

相關問題