全局变量的Django动态头

时间:2018-01-17 10:22:25

标签: django

有什么办法可以使用动态页眉和页脚吗?

在我的项目中,我可以为每页定义全局变量和动态变量数据。

    <body>
    <header>
        <My dynamic header template>
    </header>
    <content>
      <Page template>
    <content>

    <footer>
     <My dynamic footer template>
    <footer>

1 个答案:

答案 0 :(得分:0)

您可以使用Include方法解决此问题

{% include "Template_path" with title_pager="title_path" %}

title_path:路径的标题(如果需要) template_path:模板文件的路径 这将通过根据您的要求提供动态template_path来解决您的问题。