Include author details in iCal event description
This commit is contained in:
parent
6458f4d436
commit
710d377016
1 changed files with 11 additions and 9 deletions
|
@ -282,7 +282,9 @@ class EventFeed(ICalFeed):
|
||||||
|
|
||||||
def item_description(self, item):
|
def item_description(self, item):
|
||||||
if hasattr(item.content, 'proposal'):
|
if hasattr(item.content, 'proposal'):
|
||||||
return item.content.abstract
|
description = "Speaker: %s\n%s" % (
|
||||||
|
item.content.speaker, item.content.abstract)
|
||||||
|
return description
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue