├── .coveragerc ├── .gitignore ├── .travis.yml ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── README.rst ├── connections ├── __init__.py ├── apps.py ├── models.py ├── shortcuts.py ├── signals.py └── templatetags │ ├── __init__.py │ └── connections.py ├── runtests.py ├── runtests.sh ├── setup.py └── tests ├── __init__.py ├── settings.py ├── test_connections.py ├── test_relationships.py ├── test_signals.py └── test_templatetags.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/.travis.yml -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | 2 | Please use:: 3 | 4 | $ python setup.py install 5 | 6 | See README.rst 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/README.rst -------------------------------------------------------------------------------- /connections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/connections/__init__.py -------------------------------------------------------------------------------- /connections/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/connections/apps.py -------------------------------------------------------------------------------- /connections/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/connections/models.py -------------------------------------------------------------------------------- /connections/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/connections/shortcuts.py -------------------------------------------------------------------------------- /connections/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/connections/signals.py -------------------------------------------------------------------------------- /connections/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /connections/templatetags/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/connections/templatetags/connections.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/runtests.py -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/runtests.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/tests/test_connections.py -------------------------------------------------------------------------------- /tests/test_relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/tests/test_relationships.py -------------------------------------------------------------------------------- /tests/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/tests/test_signals.py -------------------------------------------------------------------------------- /tests/test_templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfunckt/django-connections/HEAD/tests/test_templatetags.py --------------------------------------------------------------------------------