├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── dev-requirements.txt ├── docker-compose.yml ├── include ├── __init__.py ├── aggregations.py ├── expressions.py ├── manager.py ├── query.py └── util.py ├── manage.py ├── setup.cfg ├── setup.py ├── tasks.py ├── tests ├── __init__.py ├── conftest.py ├── factories.py ├── issues │ └── test_2.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170713_1713.py │ ├── 0003_auto_20170825_1341.py │ ├── 0004_author_comment_post.py │ └── __init__.py ├── models.py ├── settings.py └── test_include.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /include/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/include/__init__.py -------------------------------------------------------------------------------- /include/aggregations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/include/aggregations.py -------------------------------------------------------------------------------- /include/expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/include/expressions.py -------------------------------------------------------------------------------- /include/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/include/manager.py -------------------------------------------------------------------------------- /include/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/include/query.py -------------------------------------------------------------------------------- /include/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/include/util.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/manage.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/setup.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | urlpatterns = [] 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/tests/factories.py -------------------------------------------------------------------------------- /tests/issues/test_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/tests/issues/test_2.py -------------------------------------------------------------------------------- /tests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/tests/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/0002_auto_20170713_1713.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/tests/migrations/0002_auto_20170713_1713.py -------------------------------------------------------------------------------- /tests/migrations/0003_auto_20170825_1341.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/tests/migrations/0003_auto_20170825_1341.py -------------------------------------------------------------------------------- /tests/migrations/0004_author_comment_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/tests/migrations/0004_author_comment_post.py -------------------------------------------------------------------------------- /tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/tests/test_include.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisseto/django-include/HEAD/tox.ini --------------------------------------------------------------------------------