Changeset - a1cbcdddd5d1
[Not reviewed]
0 1 0
Patrick Altman - 8 years ago 2016-02-20 23:06:09
paltman@gmail.com
Add back in parsing the content override into html
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
symposion/schedule/models.py
Show inline comments
...
 
@@ -149,6 +149,7 @@ class Slot(models.Model):
 
    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):
0 comments (0 inline, 0 general)