1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Django】テンプレート内のfor文で困ったので調べたら簡単に解決した話

Posted at

困ったので調べてみた。

忘れないうちに。鉄は熱いうちに打て。

djangoのテンプレート内で、
もし1回目だけ結果を出力したい!
となった場合

{% for review in reviews %}
    {% if forloop.first %}
    <p>{{ review.review }}</p>
    {% endif %}
{% endfor %}

最後だけ出力したい(一番直近のデータだけ)場合  

{% for review in reviews %}
    {% if forloop.last %}
    <p>{{ review.review }}</p>
    {% endif %}
{% endfor %}

参考

ちなみにChatAPI先生に聞いたところ

{% load humanize %}

を追加しろと言われました。。

スクリーンショット 2023-04-01 015203.png

幸せならOKです!を思い出しました。

読んでいただきありがとうございました!

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?