我有一个由创建的列表zip
。
list = zip(rating,image,comment)
所有元素都是可迭代的查询集。
图像是这种形式:
Class image(request):
location_id = models.IntegerField()
bild = models.ImageField(upload_to=".",default='')
因此,一个位置可以有多个图像。
现在我将其渲染list
为模板并对其进行迭代以显示项目。比如说,一个位置有 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 %}
感谢帮助