A simple contact form for Django websites.
Project description
A very simple contact form for a Django website. The form is emailed to one or more email addresses upon submission.
Requires
Django >= 1.4
Installation
Install the latest release using pip:
pip install quix.django.contact
Or install the development version using git:
git clone https://github.com/Quixotix/quix.django.contact.git
Add quix.django.contact to INSTALLED_APPS in settings.py.
Basic Usage
Specify the email addresses which will recieve the contact form message in settings.py:
CONTACT_EMAILS = ('somebody@localhost', 'another@localhost')
Include quix.django.contact.urls in urls.py:
urlpatterns = patterns('', # ... url(r'^contact/', include('quix.django.contact.urls')), # ... )
Create the 3 templates (see examples in the next section):
contact/form.html - The contact form with form in the context.
contact/success.html - Page the form redirects to when successful.
contact/email.txt - The text template for the email.
Link to the contact form in a template using the "contact-form" named URL pattern:
<a href="{% url contact-form %}">Contact</a>
Templates
contact/form.html:
{% extends "base.html" %} {% block content %} <h1>Contact</h1> <form action="." method="post"> {% csrf_token %} {{ form.non_field_errors }} {{ form.as_p }} <input type="submit" value="Send" /> </form> {% endblock %}
contact/success.html:
{% extends "base.html" %} {% block content %} <h1>Your message has been sent.</h1> {% endblock %}
contact/email.txt:
From: {{ name }} {{ email }} {{ message }} --- This message was sent via the website contact form.
Settings
The following settings can be set in settings.py for the contact form. Only CONTACT_EMAILS is required, which is a tuple or list of email addresses to which the contact form should be sent.
Setting |
Default |
Required |
---|---|---|
CONTACT_EMAILS |
Yes |
|
CONTACT_FORM_CLASS |
"quix.django.contact.forms.ContactForm" |
No |
CONTACT_FORM_TEMPLATE |
"contact/form.html" |
No |
CONTACT_SUCCESS_TEMPLATE |
"contact/success.html" |
No |
CONTACT_EMAIL_TEMPLATE |
"contact/email.txt" |
No |
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file quix.django.contact-0.2.1.tar.gz
.
File metadata
- Download URL: quix.django.contact-0.2.1.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df6c20598496d60f5f8668f2410ac7197465d0b46b8338fe217885fb73a2b673 |
|
MD5 | 1dfc9bb53d29ead0cc7dbd7690714106 |
|
BLAKE2b-256 | fdf4887d53372f7b8eb77344b22d9f697831db3ccfa23e2b7598f3e2e311c0fe |