Hi,
I need ideas on how to handle this logic. I have 2 models: Albums and Photos. The Photos model is related to the Albums model by a ForeignKey. Now, it could happen that I have multiple albums and multiples photos in each Album. How can I define this in the views such that only photos in each album is displayed rather than all photos in all albums? I am a bit confused on how to go about it. Thanks.
PS: This is in Django