File diff 8e6ea8ad71bf → f7e45da6ddc8
www/conservancy/apps/contacts/models.py
Show inline comments
 
from django.db import models
 

	
 
class ContactEntry(models.Model):
 
    """SFLC contact system
 
    """Conservancy contact system
 

	
 
    Hopefully this will be deprecated soon"""
 

	
 
    email = models.EmailField() # should make it unique, but we really cannot
 
    subscribe_sflc = models.BooleanField()
 
    subscribe_sfc = models.BooleanField()
 
    subscribe_conservancy = models.BooleanField()
 

	
 
    class Meta:
 
        ordering = ('email',)