summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/templates/email/insufficient_rep_to_post_by_email.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/askbot/templates/email/insufficient_rep_to_post_by_email.html b/askbot/templates/email/insufficient_rep_to_post_by_email.html
index a7e88b3b..df7f797a 100644
--- a/askbot/templates/email/insufficient_rep_to_post_by_email.html
+++ b/askbot/templates/email/insufficient_rep_to_post_by_email.html
@@ -1,4 +1,4 @@
-{% extends "email/base_mail.html"%}
+{% extends "email/base_mail.html" %}
{% import "email/macros.html" as macros %}
{# parameters:
* min_upvotes
@@ -6,15 +6,15 @@
* site_name - for the footer
* site_link - html for the link
#}
-{%block headline%}
+{% block headline %}
{% trans user=username|escape %}{{ username }}, your question could not be posted by email just yet.{% endtrans %}
{%endblock%}
-{%block content%}
+{% block content %}
<p>
{% trans %}To make posts by email, you need to receive about {{min_upvotes}} upvotes.{% endtrans %}<br/>
{% trans link=site_link|safe %}At this time, please post your question at {{link}}{% endtrans %}
</p>
-{%endblock%}
-{%block footer}
+{% endblock %}
+{% block footer %}
{% include "email/footer.html" %}
-{%endblock%}
+{% endblock %}