project/scipycon/base/models.py
changeset 124 d62d301527b3
parent 116 5191e1134082
child 136 267d9eee024b
equal deleted inserted replaced
123:d4799b7159e4 124:d62d301527b3
     4 class Timeline(models.Model):
     4 class Timeline(models.Model):
     5     """Timeline of the program
     5     """Timeline of the program
     6     """
     6     """
     7 
     7 
     8     # Start of registration for the program
     8     # Start of registration for the program
     9     registration_start = models.DateTimeField(blank=True)
     9     registration_start = models.DateTimeField(blank=True, null=True)
    10 
    10 
    11     # End of registration for the program
    11     # End of registration for the program
    12     registration_end = models.DateTimeField(blank=True)
    12     registration_end = models.DateTimeField(blank=True, null=True)
    13 
    13 
    14     # Start of Call for Papers
    14     # Start of Call for Papers
    15     cfp_start = models.DateTimeField(blank=True)
    15     cfp_start = models.DateTimeField(blank=True, null=True)
    16 
    16 
    17     # End of Call for Papers
    17     # End of Call for Papers
    18     cfp_end = models.DateTimeField(blank=True)
    18     cfp_end = models.DateTimeField(blank=True, null=True)
    19 
    19 
    20     # Accepted papers announced
    20     # Accepted papers announced
    21     accepted_papers_announced = models.DateTimeField(blank=True)
    21     accepted_papers_announced = models.DateTimeField(blank=True, null=True)
    22 
    22 
    23     # Deadline to submit proceedings paper
    23     # Deadline to submit proceedings paper
    24     proceedings_paper_deadline = models.DateTimeField(blank=True)
    24     proceedings_paper_deadline = models.DateTimeField(blank=True, null=True)
    25 
    25 
    26     # Start of the actual program
    26     # Start of the actual program
    27     event_start = models.DateTimeField(blank=True)
    27     event_start = models.DateTimeField(blank=True, null=True)
    28 
    28 
    29     # End of the actual program
    29     # End of the actual program
    30     event_end = models.DateTimeField(blank=True)
    30     event_end = models.DateTimeField(blank=True, null=True)
    31 
    31 
    32 
    32 
    33 class Event(models.Model):
    33 class Event(models.Model):
    34     """Data model which holds the data related to the scope or the event.
    34     """Data model which holds the data related to the scope or the event.
    35     """
    35     """