我有一个包含3个应用的项目:app1,app2和app3。在前两个应用程序中,我有不同的模板:
app1/templates/app1/page.html
app2/templates/app2/anotherpage.html
我按照这样加载它们:
return render(request, "app1/page.html")
它工作得很好,但现在我添加了app3,我尝试做同样的事情:
app3/templates/app3/config.html
但是当我返回app3/config.html
时,我收到错误TemplateDoesNotExist
我只是创建了应用python manage.py startapp app3
的应用并将文件复制到该文件夹。我还将应用程序添加到INSTALLED_APPS
列表中。但是,这有效:
app1/templates/app3/config.html
app2/templates/app3/config.html
为什么它现在不起作用?