I have three models
class ModelA(models.Model):
name = CharField(max_length=100)
class ModelB(models.Model):
modela = ForeignKey(ModelA)
class ModelC(models.Model):
modelb = ForeignKey(ModelB)
amount = IntegerField()
I can get the output
name, number of model c objects
==============
Some name, 312
Another name, 17
With the queryset
ModelA.objects.all().prefetch_related('modelb_set', 'groupb_set__modelc_set')
and template
{% for modela in modela_list %}
{% for modelb in modela.modelb_set.all %}
{{ modelb }}, {{ modelb.modelc_set.count }}
{% endfor %}
{% endfor %}
Instead of counting the number of ModelC objects connected to each ModelB object I want to sum the amount field in ModelC.
I don't know how to combine prefetch_related
and annotate
in my queryset, but it must be something like
(ModelA.objects.all()
.prefetch_related('modelb_set', 'groupb_set__modelc_set')
.annotate(total_amount=Sum('modelc_set__amount')))
I think you should be able to achieve that by doing this:
from django.db.models import F, Sum
(ModelA.objects.all()
.prefetch_related('modelb_set', 'modelb__modelc_set')\
.values('name')\ # group values by modela.name, read: https://docs.djangoproject.com/en/1.9/topics/db/aggregation/
.annotate(name = F('name'),
total_amount = Sum('modelb__modelc__amount')))
and in your template you should use:
{% for modela in modela_list %}
{{ modela.name }}, {{ modela.total_amount }}
{% endfor %}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With