Skip to content

Instantly share code, notes, and snippets.

@sleekslush
Created January 21, 2012 00:57
Show Gist options
  • Save sleekslush/1650519 to your computer and use it in GitHub Desktop.
Save sleekslush/1650519 to your computer and use it in GitHub Desktop.
Queryset example with DetailView
class MyView(DetailView):
def get_queryset(self):
queryset = super(MyView, self).get_queryset()
return queryset.filter(my_cool_field=42)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment