Tagged Questions

0
votes
4answers
88 views
+150

Filtering the Aggregate in the Django ORM

I have a function that looks like this: def post_count(self): return self.thread_set.aggregate(num_posts=Count('post'))['num_posts'] I only want to count posts that have their status marked …