Files @ e1dfd65c3a6e
Branch filter:

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

bkuhn
All included via base_conservancy.html template

jQuery, jQuery UI, and the supporter-page Javscript are now included via
the base_conservancy.html template.
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(default=False)

    class Meta:
        ordering = ('email',)