Makes sure accessibility requirements are parsed
This commit is contained in:
parent
c0e9b90476
commit
388c722ed6
1 changed files with 1 additions and 0 deletions
|
@ -109,6 +109,7 @@ class Speaker(models.Model):
|
|||
def save(self, *args, **kwargs):
|
||||
self.biography_html = parse(self.biography)
|
||||
self.experience_html = parse(self.experience)
|
||||
self.accessibility_html = parse(self.accessibility)
|
||||
return super(Speaker, self).save(*args, **kwargs)
|
||||
|
||||
def __str__(self):
|
||||
|
|
Loading…
Reference in a new issue