Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def get_comments_count(self):
- ctype = ContentType.objects.get_for_model(self)
- comments = Comment.objects.filter(content_type=ctype, object_id=self.id, is_deleted=0).count()
- return comments
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement