File diff bef463701667 → a5cd6ab63b9a
www/conservancy/apps/contacts/models.py
Show inline comments
...
 
@@ -3,11 +3,11 @@ 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()
 
    subscribe_conservancy = models.BooleanField(default=False)
 

	
 
    class Meta:
 
        ordering = ('email',)