テンプレートにループがあります:
{% for item in items %}
<div class="item">
{{ forloop.counter }}) {{ item.name }}
</div>
{% endfor %}
forloop.counterを文字(a、b、c、d、e ...)として表示したいのですが、ul-> liタグは使用せず、forloop.counterのみを使用します。どうやってするの?
テンプレートにループがあります:
{% for item in items %}
<div class="item">
{{ forloop.counter }}) {{ item.name }}
</div>
{% endfor %}
forloop.counterを文字(a、b、c、d、e ...)として表示したいのですが、ul-> liタグは使用せず、forloop.counterのみを使用します。どうやってするの?