我有一个 django 项目 pro1 有几个应用程序:app1、app2、app3 等等。我想显示一些包含每个应用程序块的顶级模板:
example_base_template.html:
[header /]
[left nav bar]{{ app1 rendered template }}[/left nav bar]
[right nav bar]{{ app2 rendered template }}[/right nav bar]
[center section]{{ app1 main functionality template }}[/center section]
[footer]{{ app3 rendered template }}{{ app4 rendered template }}[/footer]
所有这些应用程序模板都是动态的,使用数据库。如何以最恰当和优雅的方式做到这一点?或者问题是如何将 4 个不同的视图连接到一个 URL?