如果声明取决于产品所属的类别(Big Cartel)

时间:2015-12-10 17:45:26

标签: bigcartel

我可以在 Product.html 页面上创建if语句,具体取决于产品所属的类别吗?像这样:

{% if product.category.name == 'Shirts' %}
     <div>Some Content</div>
{% endif %}

感谢。

1 个答案:

答案 0 :(得分:0)

由于产品可以列在多个类别中,因此您需要使用for循环来浏览所有类别,然后使用if语句检查名称 - 像这样:

{% for category in product.categories %}
  {% if category.name == 'Shirts' %}
    <div>Your content</div>
  {% endif %}
{% endfor %}