Metadata-Version: 1.1
Name: djangochurch-contact
Version: 0.1
Summary: Simple contact form for Django Church sites
Home-page: https://github.com/djangochurch/djangochurch-contact
Author: Blanc Ltd
Author-email: studio@blanc.ltd.uk
License: BSD
Description: Django Church Contact
        =====================
        
        Simple contact form for Django Church sites.
        
        
        Installation
        ------------
        
        .. _pip: http://www.pip-installer.org/
        
        Install the package with pip_::
        
            pip install djangochurch-contact
        
        Add ``djangochurch_contact`` to ``INSTALLED_APPS``::
        
            INSTALLED_APPS = [
                ...
                'djangochurch_contact',
            ]
        
        Add the URL include to ``urlpatterns``::
        
            urlpatterns = [
                ...
        
                # Contact form
                url(r'^contact/', include('djangochurch_contact.urls', namespace='contact')),
            ]
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
