Changes between Initial Version and Version 1 of Ticket #33403, comment 4
- Timestamp:
- Jan 2, 2022, 2:26:05 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33403, comment 4
initial v1 14 14 {{{ 15 15 # this alters the sum although the documentation suggests this should just work 16 Publisher.objects.annotate(Sum("books_ pages")).filter(books__in=Books.objects.all())16 Publisher.objects.annotate(Sum("books__pages")).filter(books__in=Books.objects.all()) 17 17 }}} 18 18