Files @ 23c2ac28452c
Branch filter:

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

bkuhn
Clarify text that not all sponsors are here.

Some sponsors remain anonymous. This text should reflect 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(default=False)

    class Meta:
        ordering = ('email',)