event/models.py
author nishanth
Tue, 20 Apr 2010 21:06:54 +0530
changeset 16 ad51f38d0339
parent 4 e3b8a3ae3857
child 23 f57c30096b51
permissions -rw-r--r--
implemented the start quiz functionality

from django.db import models

class Event(models.Model):
    """ An event.
    """

    title = models.CharField(max_length=200)
    start_date = models.DateField()
    stop_date = models.DateField()
    feedback_status = models.CharField(max_length=1, default='0')
    quiz_status = models.CharField(max_length=2, default='00')