Skip to content

Instantly share code, notes, and snippets.

@drager
Created March 10, 2013 21:05
Show Gist options
  • Save drager/5130411 to your computer and use it in GitHub Desktop.
Save drager/5130411 to your computer and use it in GitHub Desktop.
def get_queryset(self):
"""
Will get the queryset.
"""
forum_id = self.kwargs['forum_id']
return Topic.objects.filter(forum__id=forum_id).order_by('-is_sticky', '-modified').select_related('last_post__topic', 'last_post__author', 'author')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment