想要编辑夹层页脚

时间:2014-04-16 13:46:06

标签: django footer mezzanine

我想编辑Mezzanine页脚。包含由Django和Mezzanine提供支持的那个。我是新手。我该怎么做呢?

1 个答案:

答案 0 :(得分:2)

您需要覆盖显示页脚的模板(base.html)。

首先将所有模板收集到一个/templates文件夹中:

python manage.py collecttemplates

你还需要一个应用程序来保存被覆盖的模板,我倾向于打电话 这个core

python manage.py startapp core

确保在任何夹层之前将其添加到INSTALLED_APPS的顶部 模块。

然后复制或移动模板以覆盖到core应用:

mkdir core/templates
mv templates/base.html core/templates/

然后根据您的喜好编辑core/templates中的模板。