django-pivot
django-pivot copied to clipboard
A module for pivoting Django Querysets
Could it be possible to keep a queryset or some sort of way that we could make the pivot number be attached to the records that produced the number to...
Hello! I the revision 1.9.0 Pivot returned ValuesQueryset, but in the revision 1.10.0 it returns List: ``` #rev 1.9.0 .. values_list = queryset.values(*values).annotate(**annotations) .. #rev 1.10.0 .. values_list = [_swap_dictionary_keys(result,...
I have used the library and It just works fine with one data field ("mark1" in my case). However It fail for multiples data fields. For examples I would like...
Hi there, I'm trying to get some dashboarded datas on some models, and even between models. issue description : When I union 2 queryset of models objects, and then try...
It might be useful to some people to have the aggregation be cumulative. From issue #5 (PJCampi) It would be fairly easy to allow for cumulative aggregation as well, which...