summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/email/post_as_subthread.html
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/skins/default/templates/email/post_as_subthread.html')
-rw-r--r--askbot/skins/default/templates/email/post_as_subthread.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/askbot/skins/default/templates/email/post_as_subthread.html b/askbot/skins/default/templates/email/post_as_subthread.html
index 9b6eb728..cba5a3fd 100644
--- a/askbot/skins/default/templates/email/post_as_subthread.html
+++ b/askbot/skins/default/templates/email/post_as_subthread.html
@@ -1,4 +1,7 @@
+{% extends "email/base_mail.html"%}
{% from "email/macros.html" import quoted_post %}
+
+{%block content %}
{% if post.post_type in ('question', 'answer') %}
{{ quoted_post(post) }}
{% set comments = post.get_cached_comments() %}
@@ -15,3 +18,6 @@
{% endfor %}
{% endif %}
{% endif %}
+{% endblock %}
+{% include "email/footer.html" %}
+{% endblock %}