├── .editorconfig ├── .gitchangelog.rc ├── .github └── workflows │ ├── pre-commit.yml │ ├── pypi-release.yml │ └── unit_tests.yml ├── .pre-commit-config.yaml ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── index.rst ├── license.rst ├── modules.rst ├── readme.rst ├── tabular_export.admin.rst ├── tabular_export.core.rst └── tabular_export.rst ├── requirements-dev.txt ├── requirements-test.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tabular_export ├── __init__.py ├── admin.py ├── core.py └── models.py ├── tests ├── __init__.py ├── admin.py ├── models.py ├── run_tests.py ├── test_admin_actions.py ├── test_tabular_exporter.py └── urls.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitchangelog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/.gitchangelog.rc -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/.github/workflows/pypi-release.yml -------------------------------------------------------------------------------- /.github/workflows/unit_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/.github/workflows/unit_tests.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/tabular_export.admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/docs/tabular_export.admin.rst -------------------------------------------------------------------------------- /docs/tabular_export.core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/docs/tabular_export.core.rst -------------------------------------------------------------------------------- /docs/tabular_export.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/docs/tabular_export.rst -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django>=4.0,<6.0 2 | xlsxwriter 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/setup.py -------------------------------------------------------------------------------- /tabular_export/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0.2" 2 | -------------------------------------------------------------------------------- /tabular_export/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/tabular_export/admin.py -------------------------------------------------------------------------------- /tabular_export/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/tabular_export/core.py -------------------------------------------------------------------------------- /tabular_export/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/tests/admin.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/tests/run_tests.py -------------------------------------------------------------------------------- /tests/test_admin_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/tests/test_admin_actions.py -------------------------------------------------------------------------------- /tests/test_tabular_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/tests/test_tabular_exporter.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/django-tabular-export/HEAD/tox.ini --------------------------------------------------------------------------------