我怎样才能创建一个if
根据 WagtailCMS SITE_ID 创建一个块来显示我的侧边菜单之一?
试过这个,但它不起作用
{% if settings.SITE_ID == 1 %}
{% include 'includes/_home-sidebar-left.html' %}
{% else %}
{% include 'includes/_home-sidebar.html' %}
{% endif }
我怎样才能创建一个if
根据 WagtailCMS SITE_ID 创建一个块来显示我的侧边菜单之一?
试过这个,但它不起作用
{% if settings.SITE_ID == 1 %}
{% include 'includes/_home-sidebar-left.html' %}
{% else %}
{% include 'includes/_home-sidebar.html' %}
{% endif }
假设这是一个页面模板,您可以使用page.get_site()通过页面对象访问当前站点。
话虽如此,您最终会在模板中使用魔术字符串/数字(用于检查站点 ID 或名称)。解决这个问题的一种方法是使用wagtail.contrib.settings模块。
正确设置模块后,在以下位置创建一个设置对象(将出现在管理员中)myapp/wagtail_hooks.py
:
from wagtail.contrib.settings.models import BaseSetting, register_setting
@register_setting
class LayoutSettings(BaseSetting):
POSITION_LEFT = 'left'
POSITION_RIGHT = 'right'
POSITIONS = (
(POSITION_LEFT, 'Left'),
(POSITION_RIGHT, 'Right'),
)
sidebar_position = models.CharField(
max_length=10,
choices=POSITIONS,
default=POSITION_LEFT,
)
并使用模板中的设置myapp/templates/myapp/mytemplate.html
{% if settings.myapp.LayoutSettings.sidebar_position == 'left' %}
{% include 'includes/_home-sidebar-left.html' %}
{% else %}
{% include 'includes/_home-sidebar.html' %}
{% endif }