Navigation Menu

Skip to content

llann/django-envelope

 
 

Repository files navigation

django-envelope

Latest PyPI version

Number of PyPI downloads

image

image

django-envelope is a simple contact form app for Django web framework.

Basic usage

  1. Add envelope to your INSTALLED_APPS.
  2. Create a template envelope/contact.html that contains somewhere a call to {% render_contact_form %} template tag. This tag can be imported by placing {% load envelope_tags %} at the top of your template.
  3. Hook the app's URLconf in your urls.py like this:

    urlpatterns = patterns('',
        #...
        (r'^contact/',    include('envelope.urls')),
        #...
    )

See the docs for more customization options.

Resources

Authors

django-envelope is maintained by Zbigniew Siciarz. See AUTHORS.rst for a full list of contributors.

License

This work is released under the MIT license. A copy of the license is provided in the LICENSE file.

About

A contact form app for Django

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 89.3%
  • Shell 10.7%