Created
September 3, 2014 16:40
-
-
Save j00bar/ffcd7603f036e22d1622 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# N+1 queries | |
for photoset_obj in PhotoSet.objects.filter(owner=request.user): | |
latest_photo_obj = photoset_obj.photo_set.all().order_by('-created')[0] | |
yield photoset_obj, latest_photo_obj | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment