2010-09-26 17:32:53 -04:00
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
class ContactEntry(models.Model):
|
2010-09-26 17:54:29 -04:00
|
|
|
"""Conservancy contact system
|
2010-09-26 17:32:53 -04:00
|
|
|
|
|
|
|
Hopefully this will be deprecated soon"""
|
|
|
|
|
|
|
|
email = models.EmailField() # should make it unique, but we really cannot
|
2015-03-08 18:00:50 -07:00
|
|
|
subscribe_conservancy = models.BooleanField(default=False)
|
2010-09-26 17:32:53 -04:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
ordering = ('email',)
|
|
|
|
|