Files @ 888028f64b95
Branch filter:

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

bkuhn
Jeremy emailed me his bio to use for the Conservancy website:
To: "Bradley M. Kuhn" <bkuhn@sfconservancy.org>
Cc: jra@samba.org
Message-ID: <20101005004226.GA27337@samba1>
Date: Mon, 4 Oct 2010 17:42:26 -0700
From: Jeremy Allison <jra@samba.org>
Subject: Re: bio for Conservancy website
from django.db import models

class SummitRegistration(models.Model):
    """Form fields for summit registrants"""

    name = models.CharField(max_length=300)
    affiliation = models.CharField(max_length=700, blank=True)
    address = models.TextField(blank=True)
    email = models.EmailField(blank=True)
    phone = models.CharField(max_length=100, blank=True)
    date_created = models.DateField(auto_now_add=True)
    cle_credit = models.BooleanField(null=True)

    class Meta:
        ordering = ('name',)