summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-24 00:04:05 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-24 00:04:05 -0400
commitb22025d1e489c1d08dd59a03decbbd0834491dd8 (patch)
tree6dd3b5ce680b9581b0890589f74dc07edb2760d6
parent36a0f97e7b0549f7db50e0d86fe3bf436304f64f (diff)
downloadaskbot-b22025d1e489c1d08dd59a03decbbd0834491dd8.tar.gz
askbot-b22025d1e489c1d08dd59a03decbbd0834491dd8.tar.bz2
askbot-b22025d1e489c1d08dd59a03decbbd0834491dd8.zip
fixed typo in a template
-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 %}