Files @ 9c4697993e9b
Branch filter:

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

bkuhn
FSA template is now publicly available online.
This is version is r6334 from Conservancy's internal repository.
FAQ has been appropriately updated to link to this.
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',)