によって作成されたリストがありzip
ます。
list = zip(rating,image,comment)
すべての要素は反復可能なクエリセットです。
画像は次の形式です。
Class image(request):
location_id = models.IntegerField()
bild = models.ImageField(upload_to=".",default='')
したがって、1つの場所に複数の画像を含めることができます。
今、私はそれlist
をテンプレートにレンダリングし、それを繰り返してアイテムを表示しています。たとえば、1つの場所に2つの画像があります。私の問題はこれです:
{% for rate, image, comment in list %}
how do i show here both images of one location?
{{image.bild.name}} gives me only the first image
{% endfor %}
手伝ってくれてありがとう