django-tablib
django-tablib copied to clipboard
django-tablib is a helper library for Django that allows Django models to be used to generate tablib datasets with introspection of the fields on the models if no headers are provided. If headers are...
Bumps [django](https://github.com/django/django) from 1.6 to 2.2.24. Commits 2da029d [2.2.x] Bumped version for 2.2.24 release. f27c38a [2.2.x] Fixed CVE-2021-33571 -- Prevented leading zeros in IPv4 addresses. 053cc95 [2.2.x] Fixed CVE-2021-33203 --...
[JIRA](https://masschallenge.atlassian.net/browse/AC-7355) we are having issues with django tablib. The original repository is [here](https://github.com/joshourisman/django-tablib) Since we are dependent on a patch introduced by [this repo](https://github.com/mscam/django-tablib) i propose we update with the...
Bumps [tablib](https://github.com/kennethreitz/tablib) from 0.9.11 to 0.11.5. Changelog *Sourced from [tablib's changelog](https://github.com/vinayak-mehta/tablib/blob/master/HISTORY.rst).* > 0.11.5 (2017-06-13) > +++++++++++++++++++ > > - Use ``yaml.safe_load`` for importing yaml. > > 0.11.4 (2017-01-23) > +++++++++++++++++++...
- Handle "aggregate_select" deprecated method from django.db.sql.query.Query. - Make "reverse" import compatible for both versions 1.10 and 2.0.
This line breaks sorting of admin actions https://github.com/joshourisman/django-tablib/blob/master/django_tablib/admin/__init__.py#L126 This should be changed to an OrderedDict, see https://github.com/django/django/blob/1.11.13/django/contrib/admin/options.py#L768 for reference.
Add a `field_order` option on `ModelDataset` that lets you order the fields' columns.
Hello @joshourisman . Thx for django-tablib :). I'm getting an UnicodeDecodeError when generating HTML table. I have hacked a bit and here is what I found. On https://github.com/joshourisman/django-tablib/blob/master/django_tablib/views.py#L20 when using...
It looks like when USE_TZ is true the time zone conversions are not applied to excel export. I am using the generic export view. Am I missing something?