django-pivot
django-pivot copied to clipboard
A module for pivoting Django Querysets
Hi! I have detected what I think is a bug with this library when using binary fields on a django model. The problem is that answers aren't shown right, just...
After install the module i set the app in settings, but i become an error: ModuleNotFoundError: No module named 'django_pivot'
First of all, thanks for the awesome package! Its really usefull! I found a little bug in the pivot.py line 52. When i run pivot with the following parameters (models...
for example ``` stock = pivot(Transaction, 'product__name', 'location__name', 'quantity', default=0) ``` I want response to be `{'product_name' : 'Shirt'}` instead of `{ 'product__name' : 'Shirt' }`
Hello, Is it possible to have Total column creation? thanks!
is it possible to serialize the result in DRF?
As per title, what is the best/easiest way to render the columns of the pivot table dynamically?
Include missing files in sdist for #15 Tested with ``` ++ mktemp -d + D=/tmp/tmp.a77pmJgcLB + trap 'rm -rf /tmp/tmp.a77pmJgcLB' EXIT + python -m venv /tmp/tmp.a77pmJgcLB + python setup.py sdist...
It appears that the manifest is missing at least one file necessary to build from the sdist for version 1.8.1. You're in good company, about 5% of other projects updated...
Hey Marts, First of all thanks for the package, it simple but very useful :) I have a couple of comments/questions: **1. Aggregation on annotated field** I have noticed that...