summaryrefslogtreecommitdiffstats
path: root/askbot/templates/email/insufficient_rep_to_post_by_email.html
blob: df7f797a376ff801360de24af7928ff91ef2e059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "email/base_mail.html" %}
{% import "email/macros.html" as macros %}
{# parameters:
    * min_upvotes
    * username
    * site_name - for the footer
    * site_link - html for the link
#}
{% block headline %}
    {% trans user=username|escape %}{{ username }}, your question could not be posted by email just yet.{% endtrans %}
{%endblock%}
{% 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 %}
{% include "email/footer.html" %}
{% endblock %}