/django-contact-form

Contact form for django 1.3

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Extensible contacts form implemented in class-based views. Forked from django-contact-form

image

image

Tested with Django >=1.4.

Uses django-templated-email to send mail by default.

Install

Add 'contact_form' to your INSTALLED_APPS:

# settings.py
INSTALLED_APPS = (
    ...
    'contact_form',
    ...
)

Add application urs to your urlconf. Example:

# urls.py
urlpatterns += patterns('',
    (r'', include('contact_form.urls')),
)