Metadata-Version: 2.0
Name: django-multi-email-field
Version: 0.5.1
Summary: Provides a model field and a form field to manage list of e-mails
Home-page: https://github.com/fle/django-multi-email-field
Author: Florent Lebreton
Author-email: florent.lebreton@makina-corpus.com
License: LGPL, see LICENSE file.
Platform: UNKNOWN
Classifier: Topic :: Utilities
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: Django

Field and widget to store a list of e-mail addresses in a `Django <https://www.djangoproject.com>`_ project.

It provides:

* A form field and a form widget to edit a list of e-mails in a Django form;
* A model field to store the captured list of e-mails;

==================
COMPATIBILITY
==================

* Python 2.7/3.3/3.4/3.5
* Django 1.8/1.9/1.10

==================
INSTALL
==================

For now:

::

    pip install django-multi-email-field

==================
USAGE
==================

* Add ``multi_email_field`` to your ``INSTALLED_APPS``:

::

    # settings.py
    INSTALLED_APPS = (
    ...
    'multi_email_field',
    )

* Use the provided form field and widget:

::

    # forms.py
    from django import forms
    from multi_email_field.forms import MultiEmailField

    class SendMessageForm(forms.Form):
        emails = MultiEmailField()

==================
IN YOUR MODELS
==================

If you want to store a list of e-mails, you can use this:

::

    from django.db import models
    from multi_email_field.fields import MultiEmailField

    class ContactModel(models.Model):
        emails = MultiEmailField()


==================
AUTHORS
==================

    * Florent Lebreton <florent.lebreton@makina-corpus.com>

|makinacom|_

.. |makinacom| image:: http://depot.makina-corpus.org/public/logo.gif
.. _makinacom:  http://www.makina-corpus.com



=========
CHANGELOG
=========

0.5.1 (2017-08-11)
==================

** New **

- Czech translation (thanks @petrmifek)

** Bugfixes **

- Fix pypi release (thanks @costela)


0.5 (2016-10-28)
==================

- Django 1.10 compatibility (thanks @AGASS007)

** Drop support **

- Django < 1.8 is no longer supported


0.4 (2016-04-10)
==================

- Better Django (1.8/1.9) and Python (3.5) compatibility


0.3.1 (2014-12-18)
==================

** New **

- South is not required anymore


0.3 (2014-12-05)
==================

** New **

- Add support for Python 3 (thanks @Hanan-Natan)
- Add support for Django 1.7


0.2 (2014-04-08)
==================

** Bugfixes **

- Stupid blocking bad call


0.1 (2014-04-07)
==================

- Initial release


