LoginSignup
0
1

More than 3 years have passed since last update.

Django のtemplateで少し便利なカウンター

Posted at

Djangoのtemplateを扱う際にcounterを自分で記載せずとも勝手にカウントしてくれてたので、そのコードを備忘録で残しておきます。

コード

{% for value in values %}
    count:{{ forloop.counter }}
    value:{{ value }}
{% endfor %}

まとめ

forloop.counterで今が何回目のループかカウントしています。

便利ですね。

短いけど、以上

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1