2021-11-26 02:49:40 +00:00
|
|
|
from builtins import object
|
2010-09-26 21:32:53 +00:00
|
|
|
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)
|
2015-03-09 01:00:50 +00:00
|
|
|
cle_credit = models.BooleanField(default=True)
|
2010-09-26 21:32:53 +00:00
|
|
|
|
2021-11-26 02:49:40 +00:00
|
|
|
class Meta(object):
|
2010-09-26 21:32:53 +00:00
|
|
|
ordering = ('name',)
|
|
|
|
|