Created
February 19, 2019 17:14
-
-
Save walison17/794a24e21cc516e9acaeaa32bd7d94d4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
tags = HomeTag.objects.filter(active=True) | |
sections = [] | |
for t in tags: | |
sections.append({ | |
'tag': t, | |
'products': Product.objects.filter(tags__name=t.tag)[:4] | |
}) | |
sections = [ | |
{ | |
'tag': t, | |
'products': Product.objects.filter(tags__name=t.tag)[:4] | |
} for t in tags | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment