Files @ 7fe9c07cebc4
Branch filter:

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

Bradley M. Kuhn
Add holiday card to banner at top for next few days

Also, fix a few URLs .
from builtins import object
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(default=False)

    class Meta(object):
        ordering = ('email',)