Files @ b1b025f01844
Branch filter:

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

bkuhn
Fix styles on the <div>'s so that overlap isn't strange.
Whole thing should really add up to 100%, after all.
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',)