Changes between Version 2 and Version 5 of Ticket #33403
- Timestamp:
- Jan 2, 2022, 2:26:41 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33403
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #33403 – Description
v2 v5 3 3 4 4 {{{ 5 Publisher.objects.annotate(Sum("books_ pages"))5 Publisher.objects.annotate(Sum("books__pages")) 6 6 }}} 7 7 … … 9 9 10 10 {{{ 11 Publisher.objects.annotate(Sum("books_ pages")).filter(books__in=Books.objects.all())11 Publisher.objects.annotate(Sum("books__pages")).filter(books__in=Books.objects.all()) 12 12 }}} 13 13