Files @ 9a3e2f12da38
Branch filter:

Location: website/www/conservancy/apps/contacts/models.py

bkuhn
Added Evergreen to list of member projects.
from django.db import models

class ContactEntry(models.Model):
    """Conservancy contact system

    Hopefully this will be deprecated soon"""

    email = models.EmailField() # should make it unique, but we really cannot
    subscribe_conservancy = models.BooleanField()

    class Meta:
        ordering = ('email',)