summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/email/insufficient_rep_to_post_by_email.html
blob: d65ad93780612d1a7266e35ea9da7c2b1c93d08d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% import "email/macros.html" as macros %}
{# parameters:
    * min_upvotes
    * username
    * site_name - for the footer
    * site_link - html for the link
#}
<p style="{{ macros.heading_style() }}">
    {% trans %}{{ username }}, your question could not be posted by email just yet.{% endtrans %}
</p>
<p>
    {% trans %}To make posts by email, you need to receive about {{min_upvotes}} upvotes.{% endtrans %}
    {% trans link=site_link|safe %}Please post your question at {{link}}{% endtrans %}
</p>
{% include "email/footer.html" %}