Files @ be762220af99
Branch filter:

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

bkuhn
Foresight project wound down a while back.

Foresight project isn't active anymore and informed us a while back that
they weren't. We left them up for a time, but it was confusing
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',)