presenter optional in talks model
This commit is contained in:
parent
5b884a18e1
commit
046b4c26b9
|
@ -116,7 +116,7 @@ class Participant(ItfModel):
|
|||
class Talk(models.Model):
|
||||
title = models.CharField(max_length=255)
|
||||
intro = models.TextField(blank=True, null=True)
|
||||
presenter = models.CharField(max_length=255)
|
||||
presenter = models.CharField(max_length=255, blank=True)
|
||||
session = models.ForeignKey('Session') # name of meeting - name of session
|
||||
|
||||
def __unicode__(self):
|
||||
|
|
Loading…
Reference in New Issue
Block a user