Provides a model field and a form field to manage list of e-mails
This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description
Field and widget to store a list of e-mail addresses in a Django projects.
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 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 wan to store 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()
CHANGELOG
0.5 (2016-10-28)
Django 1.10 compatibility
** 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
Add support for Django 1.7
0.2 (2014-04-08)
** Bugfixes **
Stupid blocking bad call
0.1 (2014-04-07)
Initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-multi-email-field_rerelease-0.5.tar.gz.
File metadata
- Download URL: django-multi-email-field_rerelease-0.5.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7de6072cf1f06169578ef8ca7f9d45fd2181c708e1d317909467b74ed0630064
|
|
| MD5 |
ca3c1c20d18b03ddede2265e5cb0bb53
|
|
| BLAKE2b-256 |
82114cdaf7662a819dc184dda4147d7aaf484618a3cb3dc7221553b95e8d4883
|