notify to multiple speakers

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura 2015-06-12 01:36:11 +09:00
parent 7ff4c0b4ef
commit edb3336aa7

View file

@ -135,6 +135,7 @@ class ProposalBase(models.Model):
return { return {
"title": self.title, "title": self.title,
"speaker": self.speaker.name, "speaker": self.speaker.name,
"speakers": ', '.join([x.name for x in self.speakers()]),
"kind": self.kind.name, "kind": self.kind.name,
} }