Skip to content

Instantly share code, notes, and snippets.

@cooncesean
Created February 14, 2012 18:04
Show Gist options
  • Save cooncesean/1828646 to your computer and use it in GitHub Desktop.
Save cooncesean/1828646 to your computer and use it in GitHub Desktop.
Get Comments for Publishable
class Topic(Publishable):
@property
def comments(self):
return Comment.objects.filter(content_type=ContentType.objects.get_for_model(self), object_pk=self.id).order_by('id')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment