Files @ ec54a32eafa2
Branch filter:

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

bkuhn
Corrected and updated details about the granting of non-auto FY 2010 Form 900 extension.
(based on a patch from Martin Michlmayr <tbm@hp.com>)
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',)