Django 模板相对路径加载

对于加载模板的相对路径,一定要按下面处理,注意自己的模板的目录和settings.py的相对位置。下面是我建立的模板templates包,因为和settings.py在同一个目录下,所以如下设置:
import os.path

TEMPLATE_DIRS = (
    os.path.join(os.path.dirname(__file__), 'templates').replace('\\','/'),
)

你可能感兴趣的:(Django 模板相对路径加载)