Metadata-Version: 2.1
Name: django-contactform-bootstrap
Version: 1.0rc1
Summary: A Django Base contact form with bootstrap 3 and map.
Home-page: http://www.github.com/alainivars/contact_form_bootstrap/
Author: James Bennett, Alain Ivars
Author-email: alainivars@highfeature.com
License: BSD License
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: django-crispy-bootstrap (==0.1.1.1)
Requires-Dist: django-crispy-forms (>=1.11.2)
Requires-Dist: django-recaptcha (==2.0.6)
Requires-Dist: requests (==2.25.1)
Provides-Extra: dev
Requires-Dist: django-extensions (>=1.5.5) ; extra == 'dev'
Requires-Dist: django-debug-toolbar (>=1.3.0) ; extra == 'dev'
Provides-Extra: prod
Provides-Extra: tests
Requires-Dist: pytest ; extra == 'tests'
Requires-Dist: pytest-cov (==2.11.1) ; extra == 'tests'
Requires-Dist: pytest-django ; extra == 'tests'
Requires-Dist: mock ; extra == 'tests'
Requires-Dist: coverage (==5.5) ; extra == 'tests'

.. image:: https://api.travis-ci.org/alainivars/django-contact-form.svg?branch=master
   :target: http://travis-ci.org/alainivars/django-contact-form
   :alt: Build status

.. image:: https://coveralls.io/repos/alainivars/django-contact-form/badge.svg?branch=devel
   :target: https://coveralls.io/r/alainivars/django-contact-form?branch=devel
   :alt: Test coverage status

.. image:: https://requires.io/github/alainivars/django-contact-form/requirements.svg?branch=master
   :target: https://requires.io/github/alainivars/django-contact-form/requirements/?branch=master
   :alt: Requirements Status

.. image:: https://img.shields.io/pypi/dm/django_contactform_bootstrap.svg
   :target: https://pypi.python.org/pypi/django_contactform_bootstrap/
   :alt: pypi download

.. image:: https://img.shields.io/pypi/pyversions/django_contactform_bootstrap.svg
   :target: https://pypi.python.org/pypi/django_contactform_bootstrap/
   :alt: python supported

.. image:: https://img.shields.io/pypi/l/django_contactform_bootstrap.svg
   :target: https://pypi.python.org/pypi/django_contactform_bootstrap/
   :alt: licence

.. image:: https://img.shields.io/pypi/v//django_contactform_bootstrap.svg
   :target: https://pypi.python.org/pypi/django_contactform_bootstrap
   :alt: PyPi version

.. image:: https://landscape.io/github/alainivars/django-contact-form/master/landscape.svg?style=flat
   :target: https://landscape.io/github/alainivars/django-contact-form/master
   :alt: Code Health

.. image:: https://readthedocs.org/projects/django_contactform_bootstrap/badge/?version=latest
   :target: https://readthedocs.org/projects/django_contactform_bootstrap/?badge=latest
   :alt: Documentation status

.. image:: https://pypip.in/wheel/django_contactform_bootstrap/badge.svg
   :target: https://pypi.python.org/pypi/django_contactform_bootstrap/
   :alt: PyPi wheel



Releases Notes
==============

    - 1.0rc1: Add support and tests on Django 2.1.1, 2.2.19, 3.1.7 and update dependencies
    - 0.6.2: finish english and french translation
    - 0.6.1: fix import reCapcha support
    - 0.6.0: add reCapcha support, fix links to your : FACEBOOK, LINKEDIN, TWITTER, GOOGLE+
    - 0.5.11: fix a bug with import main settings
    - 0.5.0: Add support and tests on Django 1.9 and update dependencies

Requirements
============

    - Python 3.8, 3.9
    - Django 2.1.1+, 2.2.19+, 3.1.7+ and djangomaster

Features
========

* Functionality as a django contact form::

    - easy integration into an existing django project
    - Bootstrap 5
    - integrate geographical map
    - log (not yet finish)
    - tests and coverage
    - links to your : FACEBOOK, LINKEDIN, TWITTER, GOOGLE+

Todo
====

    - finish  Portuguese, Russian and Spanish translation and add other translations
    - manage display a link only if it exist
    - correct broken status links in this file

Screenshot
==========

.. image:: https://dl.dropboxusercontent.com/u/95975146/django-contactform-bootstrap.jpg
   :target: https://dl.dropboxusercontent.com/u/95975146/django-contactform-bootstrap.jpg
   :alt: Contact form Screenshot

Download
========

 - source code here::

        git clone https://github.com/alainivars/django-contact-form.git


 - packet::

        https://pypi.python.org/pypi/django_contactform_bootstrap

 - or::

        pip install django_contactform_bootstrap


Use
===

    + Add in your settings file::

        INSTALLED_APPS = (
            ...
            'contact_form_bootstrap',
            ...
        )

        ADMINS = (
            ('your admin name', 'contact@yourdomain.com'),
        )

        COMPANY = {
            'NAME': "my company",
            'ADDRESS': "26 streets from here th there",
            'ZIP': "1234",
            'CITY': "Paris",
            'LAT': 48.81484460000001,
            'LNG': 2.0523723999999675,
            'PHONE': "+336 1234 5678",
            'EMAIL': 'contact@yourdomain.com',
            'FACEBOOK': "https://www.facebook.com/highfeature",
            'LINKEDIN': "http://www.linkedin.com/in/ivarsalain",
            'TWITTER': "https://twitter.com/HighFeature",
            'GOOGLEPLUS': "https://twitter.com/HighFeature",
        }

        CRISPY_TEMPLATE_PACK = 'bootstrap3'

        USE_RECAPTCHA = False or True
        and if you use it : (https://www.google.com/recaptcha)
        RECAPTCHA_PUBLIC_KEY = 'your reCapcha public key'
        RECAPTCHA_PRIVATE_KEY = 'your reCapcha private key'

    + Don't forget to set::

        EMAIL_HOST, EMAIL_PORT, EMAIL_HOST_USER and EMAIL_HOST_PASSWORD


Documentation
=============

.. note::
    Please note that this Project is documented poorly. If you have any questions please contact us!
    We'd love to update the documentation and answer your question!

Getting Help
============

Please report bugs or ask questions using the `Issue Tracker`

Check also for the latest updates of this project on Github_.

Credits
=======

    Based on James Bennett's django_contact_form:
      - https://bitbucket.org/ubernostrum/django_contact_form
    Based on Aaron Madison django_contact_form:
      - https://github.com/madisona/django-contact-form
    By Alain Ivars django_contactform_bootstrap:
      - https://github.com/alainivars/django-contact-form

* `django`_

.. _Github: https://github.com/alainivars/django_contactform_bootstrap
.. _Issue Tracker: https://github.com/alainivars/django_contactform_bootstrap/issues
.. _django: http://www.djangoproject.com


