django.template.exceptions.TemplateDoesNotExist: index.html

在网上查了下,setting中 TEMPLATES 的 \’DIRS\’ 需要添加os.path.join(BASE_DIR, \’templates\’)

TEMPLATES = [
    {
        ...
        \'DIRS\': [os.path.join(BASE_DIR, \'templates\')],
        ...
    },
]

  

版权声明:本文为hanzg原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/hanzg/p/12037712.html