Metadata-Version: 1.1
Name: django-contactform
Version: 2.1.0
Summary: A Django app to display simple contact form.
Home-page: https://github.com/geelweb/geelweb-django-contactform
Author: Guillaume Luchet
Author-email: guillaume@geelweb.org
License: MIT
Description: ===========
        ContactForm
        ===========
        
        |Build status| |Documentation Status|
        
        Django app to manage simple contact form On Django >= 3 projects.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Install the app using pip
        
        .. code-block:: text
        
            pip install django-contactform
        
        
        2. Add 'contactform' to your `INSTALLED_APPS` settings like this
        
        .. code-block:: python
        
            INSTALLED_APPS = [
                ...
                'contactform',
            ]
        
        3. Configure the recipients of your form in your settings
        
        .. code-block:: python
        
            CONTACTFORM_RECIPIENTS = ['me@example.com']
        
        4. Include the contactform URLconf in your project urls.py like
        
        .. code-block:: python
        
            path('contact/', include('contactform.urls')),
        
        5. Add a form to your page using the `contact_form` template tag
        
        .. code-block:: python
        
            {% load contact_form %}
        
            {% contact_form %}
        
        
        .. |Build status| image:: https://travis-ci.org/geelweb/geelweb-django-contactform.svg?branch=master
        .. |Documentation Status| image:: https://readthedocs.org/projects/django-contactform/badge/?version=latest
           :target: https://readthedocs.org/projects/django-contactform/?badge=latest
        
        
        The MIT License (MIT)
        
        Copyright (c) 2020 Guillaume Luchet
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in
        all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        THE SOFTWARE.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.0
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: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
