├── .coveragerc ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS ├── History.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── requirements.txt ├── generic_aggregation ├── __init__.py └── utils.py ├── generic_aggregation_tests ├── __init__.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py └── tests.py ├── runtests.py ├── settings_migrations.py ├── setup.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/AUTHORS -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | docutils<0.18 2 | -------------------------------------------------------------------------------- /generic_aggregation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/generic_aggregation/__init__.py -------------------------------------------------------------------------------- /generic_aggregation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/generic_aggregation/utils.py -------------------------------------------------------------------------------- /generic_aggregation_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generic_aggregation_tests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/generic_aggregation_tests/migrations/0001_initial.py -------------------------------------------------------------------------------- /generic_aggregation_tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generic_aggregation_tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/generic_aggregation_tests/models.py -------------------------------------------------------------------------------- /generic_aggregation_tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/generic_aggregation_tests/tests.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/runtests.py -------------------------------------------------------------------------------- /settings_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/settings_migrations.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coleifer/django-generic-aggregation/HEAD/tox.ini --------------------------------------------------------------------------------