├── .coveragerc ├── .gitignore ├── .travis.yml ├── APACHE_LICENSE ├── AUTHORS.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── doc_requirements.txt ├── docs ├── Makefile ├── changes.rst ├── conf.py ├── configuration.rst ├── cookbook.rst ├── customization.rst ├── development.rst ├── index.rst ├── install.rst ├── make.bat ├── reference.rst └── usage.rst ├── envelope ├── __init__.py ├── forms.py ├── locale │ ├── el │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── lv │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── ru │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── models.py ├── settings.py ├── signals.py ├── spam_filters.py ├── templates │ └── envelope │ │ ├── contact_form.html │ │ ├── email_body.html │ │ └── email_body.txt ├── templatetags │ ├── __init__.py │ └── envelope_tags.py ├── urls.py └── views.py ├── example_project ├── __init__.py ├── manage.py ├── requirements.txt ├── settings.py ├── templates │ ├── base.html │ └── envelope │ │ ├── contact.html │ │ ├── crispy_contact.html │ │ └── messages_contact.html └── urls.py ├── requirements.txt ├── runtests.py ├── setup.cfg ├── setup.py ├── test_requirements.txt ├── tests ├── __init__.py ├── settings.py ├── templates │ ├── customized_contact.html │ ├── envelope │ │ └── contact.html │ └── layout.html ├── test_forms.py ├── test_spam_filters.py ├── test_templatetags.py ├── test_views.py └── urls.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/.travis.yml -------------------------------------------------------------------------------- /APACHE_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/APACHE_LICENSE -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/README.rst -------------------------------------------------------------------------------- /doc_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/doc_requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/cookbook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/docs/cookbook.rst -------------------------------------------------------------------------------- /docs/customization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/docs/customization.rst -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /envelope/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/__init__.py -------------------------------------------------------------------------------- /envelope/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/forms.py -------------------------------------------------------------------------------- /envelope/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /envelope/locale/el/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/el/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /envelope/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /envelope/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /envelope/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /envelope/locale/fi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/fi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /envelope/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /envelope/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /envelope/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /envelope/locale/lv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/lv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /envelope/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /envelope/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /envelope/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /envelope/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /envelope/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /envelope/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /envelope/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /envelope/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /envelope/models.py: -------------------------------------------------------------------------------- 1 | # nothing here, move on 2 | -------------------------------------------------------------------------------- /envelope/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/settings.py -------------------------------------------------------------------------------- /envelope/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/signals.py -------------------------------------------------------------------------------- /envelope/spam_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/spam_filters.py -------------------------------------------------------------------------------- /envelope/templates/envelope/contact_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/templates/envelope/contact_form.html -------------------------------------------------------------------------------- /envelope/templates/envelope/email_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/templates/envelope/email_body.html -------------------------------------------------------------------------------- /envelope/templates/envelope/email_body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/templates/envelope/email_body.txt -------------------------------------------------------------------------------- /envelope/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envelope/templatetags/envelope_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/templatetags/envelope_tags.py -------------------------------------------------------------------------------- /envelope/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/urls.py -------------------------------------------------------------------------------- /envelope/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/envelope/views.py -------------------------------------------------------------------------------- /example_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/example_project/manage.py -------------------------------------------------------------------------------- /example_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/example_project/requirements.txt -------------------------------------------------------------------------------- /example_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/example_project/settings.py -------------------------------------------------------------------------------- /example_project/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/example_project/templates/base.html -------------------------------------------------------------------------------- /example_project/templates/envelope/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/example_project/templates/envelope/contact.html -------------------------------------------------------------------------------- /example_project/templates/envelope/crispy_contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/example_project/templates/envelope/crispy_contact.html -------------------------------------------------------------------------------- /example_project/templates/envelope/messages_contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/example_project/templates/envelope/messages_contact.html -------------------------------------------------------------------------------- /example_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/example_project/urls.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django>=1.11 2 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/setup.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | coverage==4.4.2 3 | tox==2.7.0 4 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/templates/customized_contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/tests/templates/customized_contact.html -------------------------------------------------------------------------------- /tests/templates/envelope/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/tests/templates/envelope/contact.html -------------------------------------------------------------------------------- /tests/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/tests/templates/layout.html -------------------------------------------------------------------------------- /tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/tests/test_forms.py -------------------------------------------------------------------------------- /tests/test_spam_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/tests/test_spam_filters.py -------------------------------------------------------------------------------- /tests/test_templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/tests/test_templatetags.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zsiciarz/django-envelope/HEAD/tox.ini --------------------------------------------------------------------------------