Files @ 8716315b60c0
Branch filter:

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

Bradley M. Kuhn
Put Karen's doctorate as our featured item.

The video may not work there, but going to try it.
from builtins import object
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(object):
        ordering = ('email',)