├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── contacts ├── __init__.py ├── admin.py ├── fixtures │ └── locations_en.json ├── forms.py ├── locale │ ├── en_CA │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── en_UK │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── en_US │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── pt_BR │ │ └── LC_MESSAGES │ │ └── django.po ├── managers.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ ├── admin │ │ └── contacts │ │ │ ├── company │ │ │ └── change_form.html │ │ │ └── person │ │ │ └── change_form.html │ ├── base.html │ └── contacts │ │ ├── _comment_list.html │ │ ├── _email_address_form.html │ │ ├── _email_address_list.html │ │ ├── _instant_messenger_form.html │ │ ├── _instant_messenger_list.html │ │ ├── _phone_number_form.html │ │ ├── _phone_number_list.html │ │ ├── _special_date_form.html │ │ ├── _special_date_list.html │ │ ├── _street_address_form.html │ │ ├── _street_address_list.html │ │ ├── _web_site_form.html │ │ ├── _web_site_list.html │ │ ├── base.html │ │ ├── company │ │ ├── base.html │ │ ├── create.html │ │ ├── delete.html │ │ ├── detail.html │ │ ├── list.html │ │ └── update.html │ │ ├── group │ │ ├── base.html │ │ ├── create.html │ │ ├── delete.html │ │ ├── detail.html │ │ ├── list.html │ │ └── update.html │ │ └── person │ │ ├── base.html │ │ ├── create.html │ │ ├── delete.html │ │ ├── detail.html │ │ ├── list.html │ │ └── update.html ├── templatetags │ ├── __init__.py │ └── contacts_tags.py ├── tests │ ├── __init__.py │ ├── factories.py │ ├── settings.py │ ├── test_models.py │ ├── test_views.py │ └── urls.py ├── urls.py └── views │ ├── __init__.py │ ├── company.py │ ├── group.py │ └── person.py ├── docs ├── Makefile ├── _build │ └── .gitignore ├── conf.py ├── index.rst ├── license.rst └── make.bat ├── requirements-docs.txt ├── requirements-tests.txt ├── requirements.txt ├── runtests.py ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/README.rst -------------------------------------------------------------------------------- /contacts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/__init__.py -------------------------------------------------------------------------------- /contacts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/admin.py -------------------------------------------------------------------------------- /contacts/fixtures/locations_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/fixtures/locations_en.json -------------------------------------------------------------------------------- /contacts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/forms.py -------------------------------------------------------------------------------- /contacts/locale/en_CA/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/locale/en_CA/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /contacts/locale/en_UK/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/locale/en_UK/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /contacts/locale/en_US/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/locale/en_US/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /contacts/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /contacts/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /contacts/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/managers.py -------------------------------------------------------------------------------- /contacts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/migrations/0001_initial.py -------------------------------------------------------------------------------- /contacts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contacts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/models.py -------------------------------------------------------------------------------- /contacts/templates/admin/contacts/company/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/admin/contacts/company/change_form.html -------------------------------------------------------------------------------- /contacts/templates/admin/contacts/person/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/admin/contacts/person/change_form.html -------------------------------------------------------------------------------- /contacts/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/base.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_comment_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_comment_list.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_email_address_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_email_address_form.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_email_address_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_email_address_list.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_instant_messenger_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_instant_messenger_form.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_instant_messenger_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_instant_messenger_list.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_phone_number_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_phone_number_form.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_phone_number_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_phone_number_list.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_special_date_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_special_date_form.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_special_date_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_special_date_list.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_street_address_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_street_address_form.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_street_address_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_street_address_list.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_web_site_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_web_site_form.html -------------------------------------------------------------------------------- /contacts/templates/contacts/_web_site_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/_web_site_list.html -------------------------------------------------------------------------------- /contacts/templates/contacts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/base.html -------------------------------------------------------------------------------- /contacts/templates/contacts/company/base.html: -------------------------------------------------------------------------------- 1 | {% extends "contacts/base.html" %} -------------------------------------------------------------------------------- /contacts/templates/contacts/company/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/company/create.html -------------------------------------------------------------------------------- /contacts/templates/contacts/company/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/company/delete.html -------------------------------------------------------------------------------- /contacts/templates/contacts/company/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/company/detail.html -------------------------------------------------------------------------------- /contacts/templates/contacts/company/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/company/list.html -------------------------------------------------------------------------------- /contacts/templates/contacts/company/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/company/update.html -------------------------------------------------------------------------------- /contacts/templates/contacts/group/base.html: -------------------------------------------------------------------------------- 1 | {% extends "contacts/base.html" %} -------------------------------------------------------------------------------- /contacts/templates/contacts/group/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/group/create.html -------------------------------------------------------------------------------- /contacts/templates/contacts/group/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/group/delete.html -------------------------------------------------------------------------------- /contacts/templates/contacts/group/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/group/detail.html -------------------------------------------------------------------------------- /contacts/templates/contacts/group/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/group/list.html -------------------------------------------------------------------------------- /contacts/templates/contacts/group/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/group/update.html -------------------------------------------------------------------------------- /contacts/templates/contacts/person/base.html: -------------------------------------------------------------------------------- 1 | {% extends "contacts/base.html" %} -------------------------------------------------------------------------------- /contacts/templates/contacts/person/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/person/create.html -------------------------------------------------------------------------------- /contacts/templates/contacts/person/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/person/delete.html -------------------------------------------------------------------------------- /contacts/templates/contacts/person/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/person/detail.html -------------------------------------------------------------------------------- /contacts/templates/contacts/person/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/person/list.html -------------------------------------------------------------------------------- /contacts/templates/contacts/person/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templates/contacts/person/update.html -------------------------------------------------------------------------------- /contacts/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contacts/templatetags/contacts_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/templatetags/contacts_tags.py -------------------------------------------------------------------------------- /contacts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contacts/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/tests/factories.py -------------------------------------------------------------------------------- /contacts/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/tests/settings.py -------------------------------------------------------------------------------- /contacts/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/tests/test_models.py -------------------------------------------------------------------------------- /contacts/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/tests/test_views.py -------------------------------------------------------------------------------- /contacts/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/tests/urls.py -------------------------------------------------------------------------------- /contacts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/urls.py -------------------------------------------------------------------------------- /contacts/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contacts/views/company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/views/company.py -------------------------------------------------------------------------------- /contacts/views/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/views/group.py -------------------------------------------------------------------------------- /contacts/views/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/contacts/views/person.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_build/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- 1 | ../LICENSE -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/docs/make.bat -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- 1 | Sphinx==1.3.1 2 | -------------------------------------------------------------------------------- /requirements-tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/requirements-tests.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myles/django-contacts/HEAD/tox.ini --------------------------------------------------------------------------------