本サイトはdjangoで作成しています。
djangoの使用方法についてまとめています。
2164 views
djangoで二重ループのうち、最初のループかどうかを知りたいときはparentloopを使う(3行目あたり)。
{% for category, books_record in book_records.items %}
{% for book, acc, chapter, section in books_record %}
{% if forloop.parentloop.first %}
<div class="carousel-item active">
<img class="d-block w-100" alt="First slide" src="{{book.image.url}}">
</div>
{% else %}
<div class="carousel-item">
<img class="d-block w-100" alt="First slide" src="{{book.image.url}}">
</div>
{% endif %}
{% endfor %}
{% endfor %}
Page 8 of 16.
すぺぺぺ
本サイトの作成者。
プログラムは趣味と勉強を兼ねて、のんびり本サイトを作っています。
フレームワークはdjango。
ChatGPTで自動プログラム作成に取り組み中。
https://www.osumoi-stdio.com/novel/