├── Pipfile ├── Pipfile.lock ├── README.md ├── db.sqlite3 ├── djcontact ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── sendemail ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py └── templates └── email.html /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/README.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /djcontact/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djcontact/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/djcontact/settings.py -------------------------------------------------------------------------------- /djcontact/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/djcontact/urls.py -------------------------------------------------------------------------------- /djcontact/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/djcontact/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/manage.py -------------------------------------------------------------------------------- /sendemail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sendemail/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/sendemail/admin.py -------------------------------------------------------------------------------- /sendemail/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/sendemail/apps.py -------------------------------------------------------------------------------- /sendemail/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/sendemail/forms.py -------------------------------------------------------------------------------- /sendemail/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sendemail/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/sendemail/models.py -------------------------------------------------------------------------------- /sendemail/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/sendemail/tests.py -------------------------------------------------------------------------------- /sendemail/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/sendemail/urls.py -------------------------------------------------------------------------------- /sendemail/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/sendemail/views.py -------------------------------------------------------------------------------- /templates/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsvincent/django-contact-form/HEAD/templates/email.html --------------------------------------------------------------------------------