第一次用Django开发网站 在项目根目录下创建了template文件夹,里面有三个子文件夹分别为common panle和error settings里面也做了设置 但是在别的APP里面继承模板的时候就出现找不到错误 只有写成extends 'common/base.html'才能正常运行 大家帮忙看看是我哪里设置不对吗
settings里的设置:
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
os.path.join(BASE_DIR, 'template'),
os.path.join(BASE_DIR, 'template/common'),
os.path.join(BASE_DIR, 'template/panel'),
os.path.join(BASE_DIR, 'template/error'),
],
'APP_DIRS': True,
......