我在django项目中有2个index.html文件,如何分别显示直接

bybem2ql  于 2023-01-21  发布在  Go
关注(0)|答案(1)|浏览(142)

我在django项目中有2个index.html文件,但是在不同的应用程序中。我如何分别显示每个文件的direct?

def index(request):
  return render(request, 'index.html')
wwwo4jvm

wwwo4jvm1#

创建以下文件夹结构

- app1
-- templates
--- app1
---- index.html
- app2
-- templates
--- app2
---- index.html

然后在views.py中查找app1

def index(request):
  return render(request, 'app1/index.html')

这个文件夹结构叫做命名空间。请阅读“模板命名空间”一节。

相关问题