Files @ 40339994ee8d
Branch filter:

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

bkuhn
Add ODT and PDF of FSA template.

These are the currently in production versions of the FSA. The LaTeX
version is sadly not being maintained by those in charge of drafting
changes now.
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',)