在这里我附上了屏幕截图,在第二部分中有2行。我只需要显示一行带有自定义代码条件的行,如果我从管理员那边禁用,它将可以正常工作,但是我需要启用和禁用循环条件才能仅显示行。这是我的代码,
<div class="col-md-12" >{% for module in modules %}<div class="img-responsive">
{{ module }}
{% endfor %}</div></div>
</div>
答案 0 :(得分:0)
循环中有一个特殊的loop variables,让您可以跟踪索引及更多内容。就您而言,loop.index
。
<div class="col-md-12" >
{% for module in modules %}
<div class="img-responsive">
{# Replace 1 with a specific index you want to use as condition #}
{% if loop.index == 1 %}
{{ module }}
{% else %}
No module
{% endif %}
</div>
{% endfor %}
</div>