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]))
Post a Comment for "Trying To Create A Tuple Of Objects Create An Object And A Queryset"