Metadata-Version: 2.0
Name: django-envelope
Version: 0.7
Summary: A contact form app for Django
Home-page: http://github.com/zsiciarz/django-envelope
Author: Zbigniew Siciarz
Author-email: antyqjon@gmail.com
License: MIT
Download-URL: http://pypi.python.org/pypi/django-envelope
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Requires-Dist: Django (>=1.4)

===============
django-envelope
===============

.. image:: https://pypip.in/v/django-envelope/badge.png
    :target: https://crate.io/packages/django-envelope/
    :alt: Latest PyPI version

.. image:: https://pypip.in/d/django-envelope/badge.png
    :target: https://crate.io/packages/django-envelope/
    :alt: Number of PyPI downloads

.. image:: https://travis-ci.org/zsiciarz/django-envelope.png?branch=develop
    :target: https://travis-ci.org/zsiciarz/django-envelope

.. image:: https://coveralls.io/repos/zsiciarz/django-envelope/badge.png
    :target: https://coveralls.io/r/zsiciarz/django-envelope


``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 <http://django-envelope.rtfd.org>`_ for more customization
options.

Resources
---------

 * `Documentation <http://django-envelope.rtfd.org>`_
 * `Issue tracker <https://github.com/zsiciarz/django-envelope/issues>`_
 * `CI server <https://travis-ci.org/zsiciarz/django-envelope>`_

Authors
-------

django-envelope is maintained by `Zbigniew Siciarz <http://siciarz.net>`_.
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.


