在设置我的项目并努力保持应用程序非依赖性的同时,我遇到了一个障碍。我希望来自不同应用程序的所有模板都有一个一致的页眉和页脚。我是这么想的:
myproject/
base/
templates/
header.html
footer.html
app1/
templates/
my_app1_page.html -> want to include 'header.html'
and 'footer.html' from base app
假设有更多的应用程序也想这样做。这种方法可行吗?