Skip to content Skip to sidebar Skip to footer

Trying To Create A Tuple Of Objects Create An Object And A Queryset

I need to iterate through a tuple in the template, but from the code i've built i am getting a tuple of an object (album) and a queryset (photo). The problem is how do i iterate ov

Solution 1:

If there's only one photo per album you are after, then why slice the queryset? Just get the first one using index:

album_list.append((album, Photo.objects.filter(album=album).order_by('?')[0]))

Solution 2:

Well, for now, using the inner for loop to solve this, And it is obviously working, but i will be happy to hear of any other suggestion to do it in a more efficient way if possible...

<imgsrc="{% for p in photo %}{{ MEDIA_URL }}{{ p.photo }}{% endfor %}"alt="Picture #{{ forloop.counter }}" />

10x :-)

Post a Comment for "Trying To Create A Tuple Of Objects Create An Object And A Queryset"