Changeset - 5b0354be90ea
[Not reviewed]
0 1 0
Luke Hatcher - 12 years ago 2012-08-31 06:52:12
lukeman@gmail.com
add id and speaker to presentation
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
symposion/schedule/models.py
Show inline comments
...
 
@@ -80,7 +80,7 @@ class Presentation(models.Model):
 
    def speakers(self):
 
        yield self.speaker
 
        for speaker in self.additional_speakers.all():
 
            yield speaker
 
    
 
    def __unicode__(self):
 
        return self.title
 
        return "#%s %s (%s)" % (self.id, self.title, self.speaker)
0 comments (0 inline, 0 general)