Friday, November 29, 2019

Groups and summarys in template

Good afternoon people!

I have the following querysets:

     accounts = Account.objects.filter (person__is_representative = False) .order_by ('due date')
     groups
= Account.objects.values ('due_date'). annotate (total_day = Sum ('sold_value')). order_by ('due_date')


Accounts Returns a List of Information Sorted by Due Date
groups returns another list sorted and grouped by due date

I would like django to place a total groups in the template below the line of accounts when it realizes that the next due date is different from the previous one, ie totaling by date.

Can someone help me?

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/8ea05b06-1eb1-4de3-8787-6d80570a6283%40googlegroups.com.

No comments:

Post a Comment