summaryrefslogtreecommitdiff
path: root/app/posts
diff options
context:
space:
mode:
Diffstat (limited to 'app/posts')
-rw-r--r--app/posts/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/posts/models.py b/app/posts/models.py
index 781e8fb..6705a83 100644
--- a/app/posts/models.py
+++ b/app/posts/models.py
@@ -178,9 +178,9 @@ class Post(models.Model):
prods = render_products(md)
print(self.title)
self.body_html = markdown_to_html(prods)
- if self.epilogue_html:
+ if self.epilogue_markdown:
self.epilogue_html = markdown_to_html(self.epilogue_markdown)
- if self.prologue_html:
+ if self.prologue_markdown:
self.prologue_html = markdown_to_html(self.prologue_markdown)
self.has_video = parse_video(self.body_html)
if self.point: