Skip to content

Commit

Permalink
Add back in parsing the content override into html
Browse files Browse the repository at this point in the history
  • Loading branch information
paltman committed Feb 20, 2016
1 parent 6e83588 commit a1cbcdd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions symposion/schedule/models.py
Expand Up @@ -149,6 +149,7 @@ def rooms(self):
def save(self, *args, **kwargs):
roomlist = ' '.join(map(lambda r: r.__unicode__(), self.rooms))
self.name = "%s %s (%s - %s) %s" % (self.day, self.kind, self.start, self.end, roomlist)
self.content_override_html = parse(self.content_override)
super(Slot, self).save(*args, **kwargs)

def __str__(self):
Expand Down

0 comments on commit a1cbcdd

Please sign in to comment.