Tagged Questions
3
votes
5answers
1k views
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 ...
1
vote
1answer
163 views
Sumproduct using Django's aggregation
Question
Is it possible using Django's aggregation capabilities to calculate a sumproduct?
Background
I am modeling an invoice, which can contain multiple items. The many-to-many relationship ...
1
vote
1answer
1k views
django: time range based aggregate query
I have the following models, Art and ArtScore:
class Art(models.Model):
title = models.CharField()
class ArtScore(models.Model):
art = models.ForeignKey(Art)
date = ...
0
votes
2answers
434 views
object_list of multiple models in django
I have multiple abstract models similar to this
Class Article(models.Model):
title = models.CharField()
body = models.TextField()
created_date = models.DateTimeField()
author_name = ...