Files @ 3cb5c712828c
Branch filter:

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

bkuhn
Added FY 2006 CHAR-500 & note why FY 2006 Form 990 wasn't required.
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',)