2010-09-26 21:32:53 +00:00
|
|
|
from django.db import models
|
|
|
|
|
2023-10-19 22:52:39 +00:00
|
|
|
|
2010-09-26 21:32:53 +00:00
|
|
|
class ContactEntry(models.Model):
|
2010-09-26 21:54:29 +00:00
|
|
|
"""Conservancy contact system
|
2010-09-26 21:32:53 +00:00
|
|
|
|
|
|
|
Hopefully this will be deprecated soon"""
|
|
|
|
|
|
|
|
email = models.EmailField() # should make it unique, but we really cannot
|
2015-03-09 01:00:50 +00:00
|
|
|
subscribe_conservancy = models.BooleanField(default=False)
|
2010-09-26 21:32:53 +00:00
|
|
|
|
2023-09-07 13:15:48 +00:00
|
|
|
class Meta:
|
2010-09-26 21:32:53 +00:00
|
|
|
ordering = ('email',)
|
|
|
|
|