我開發一個應用程序語句的Python的Django 什麼,我需要做的是一類分配到模板聲明變量,如果在Django模板
{% with 1 as counters %}
{% for importance in all_importance %}
{% if counters == 1 %}
<div class="item active" >
{% else %}
<div class="item" >
{% endif %}
{% for image in importance.subtypemodelimage_set.all %}
<img src="{{ image.image.url }}" />
{% endfor %}
</div>
{% counters += 1 %}
{% endfor %}
{% endwith %}
但我根據計數器變量值一個div面對這個問題
Invalid block tag: 'counters', expected 'empty' or 'endfor'
我在哪裏提前犯錯誤,感謝您的幫助
相反你自己開一個櫃檯,Django爲你做這個。 –
@digaph能否請你告訴我該怎麼做,如果你能爲我提供代碼片段,我將不勝感激 –