Skip to content

Instantly share code, notes, and snippets.

@walison17
Created February 19, 2019 17:14
Show Gist options
  • Save walison17/794a24e21cc516e9acaeaa32bd7d94d4 to your computer and use it in GitHub Desktop.
Save walison17/794a24e21cc516e9acaeaa32bd7d94d4 to your computer and use it in GitHub Desktop.
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