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 over them now in the template? models: class Album(models.Model): title = models.CharField('כותרת', max_length=100, db_index=True) created = models.DateTimeField('תאריך פרסום', auto_now_add=True) creator = models.ForeignKey(User, related_name='galleries_creator', verbose_name='נכתב ע"י') class Photo(models.Model):