Metadata-Version: 1.1
Name: contact_widget
Version: 1.0.0
Summary: A simple contact form widget for Django
Home-page: https://github.com/agusmakmun/django-contact-widget/
Author: Agus Makmun (Summon Agus)
Author-email: agus@python.web.id
License: MIT
Download-URL: https://github.com/agusmakmun/django-contact-widget/tarball/v1.0.0
Description: Django Contact Widget
        ====================================
        
        .. image:: https://img.shields.io/badge/license-MIT-blue.svg?maxAge=2592000
           :target: https://raw.githubusercontent.com/agusmakmun/django-contact-widget/master/LICENSE
        
        .. image:: https://img.shields.io/pypi/pyversions/Django.svg?maxAge=2592000
           :target: https://github.com/agusmakmun/django-contact-widget
        
        A simple contact form widget for Django.
        
        .. image:: http://i.imgur.com/2dzKO2s.png
        
        
        Install
        ----------------------
        
        Django Contact Widget is available directly from `PyPI`_:
        
        ::
        
            $ pip install django-contact-widget
        
        
        ***).** And don't forget to add ``contact_widget`` to your ``INSTALLED_APPS``.
        
        
        Database Migration
        ----------------------
        
        ::
        
            $ ./manage.py makemigrations contact_widget
            $ ./manage.py migrate contact_widget
        
        
        Requirement
        ----------------------
        
        * ``Django>=1.10.1``
        
        
        Setting Configuration
        ----------------------
        
        Email Configuration in file of ``settings.py``
        
        ::
        
            EMAIL_HOST = 'smtp.gmail.com'  # eg: 'smtp.gmail.com'
            EMAIL_PORT = 587
            EMAIL_HOST_USER = 'your_email@domain.com'
            EMAIL_HOST_PASSWORD = 'your_password'
            EMAIL_USE_TLS = True
            DEFAULT_FROM_EMAIL = EMAIL_HOST_USER
            EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
        
        
        URL configuration
        ----------------------
        
        The easiest way to set up the views in ``django-contact-widget`` is to just use the provided ``URLconf``, found at ``contact_widget.urls``.
        You can include it wherever you like in your site's URL configuration; for example, to have it live at the URL ``/contact/``:
        
        ::
        
            from django.conf.urls import include, url
        
            urlpatterns = [
                # ....
                url(r'^contact/', include('contact_widget.urls')),
            ]
        
        
        Usage
        ----------------------
        
        Include the tempalte from ``contact_widget/contact.html`` to your sidebar for example.
        
        ::
        
            {% include "contact_widget/contact.html" %}
        
        
        
        License
        ----------------------
        
        - `MIT`_
        
        
        .. _PyPI: https://pypi.python.org/pypi/django-contact-widget
        .. _MIT: https://github.com/agusmakmun/django-contact-widget/blob/master/LICENSE
        
Keywords: django contact widget,django contact form
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Framework :: Django
