Files @ 3507839c63dd
Branch filter:

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

bkuhn
Rename file names to remove the word "draft".

RedirectPermeant's have been added server-side to handle the fact that
the URLs were already live.
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',)