Files @ de0b3fbb09cd
Branch filter:

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

bkuhn
Include donations in progress bar through 2014-04-20.
mjw insisted that I update this more often; he's right about that. :)
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',)