project/kiwipycon/talk/models.py
changeset 8 bffb109e23c1
parent 1 fda1c66b25f9
equal deleted inserted replaced
7:ac5a1c60c2bc 8:bffb109e23c1
    52     abstract = models.TextField()
    52     abstract = models.TextField()
    53 #    outline = models.TextField()
    53 #    outline = models.TextField()
    54     topic = models.CharField(max_length=255, 
    54     topic = models.CharField(max_length=255, 
    55                              #choices=TOPIC_CHOICES,
    55                              #choices=TOPIC_CHOICES,
    56                              blank=True)
    56                              blank=True)
    57     #topic_other = models.CharField(max_length=255, blank=True)
    57 #    topic_other = models.CharField(max_length=255, blank=True)
    58     duration = models.CharField(max_length=3, choices=DURATION_CHOICES)
    58     duration = models.CharField(max_length=3, choices=DURATION_CHOICES)
    59     audience = models.CharField(max_length=32, choices=AUDIENCE_CHOICES, blank=True)
    59     audience = models.CharField(max_length=32, choices=AUDIENCE_CHOICES, blank=True)
    60 #    audience_other = models.CharField(max_length=128, blank=True)
    60 #    audience_other = models.CharField(max_length=128, blank=True)
    61     approved = models.BooleanField(default=False)
    61     approved = models.BooleanField(default=False)
    62     submitted = models.DateTimeField(auto_now_add=True)
    62     submitted = models.DateTimeField(auto_now_add=True)