我在django项目中有2个index.html文件,但是在不同的应用程序中。我如何分别显示每个文件的direct?
def index(request): return render(request, 'index.html')
wwwo4jvm1#
创建以下文件夹结构
- app1 -- templates --- app1 ---- index.html - app2 -- templates --- app2 ---- index.html
然后在views.py中查找app1
def index(request): return render(request, 'app1/index.html')
这个文件夹结构叫做命名空间。请阅读“模板命名空间”一节。
1条答案
按热度按时间wwwo4jvm1#
创建以下文件夹结构
然后在views.py中查找app1
这个文件夹结构叫做命名空间。请阅读“模板命名空间”一节。