Django Simple Contact is a pluggable application that renders a simple contact form to your Django project.
It's a really simple implementation, easy-to-use, that may let you save a little time in your development.
Using pip:
$ pip install django-simple-contact
Using the source code:
$ git clone https://github.com/kplaube/django-simple-contact
$ cd django-simple-contact/
$ python setup develop
Configuring:
- Add
simple_contact
toINSTALLED_APPS
in yoursettings.py
. - Add the URL entries:
path('contact/', include('simple_contact.urls'))
If you want your own markup (of course you do!), it's possible by overwritting the following templates:
templates/simple_contact/contact_form.html
templates/simple_contact/contact_email.html
Tests are a good idea, and we do our best to make it "as seamless as possible":
$ python setup.py test
It'll solve the project's dependencies and run the test suite.