summaryrefslogtreecommitdiffstats
path: root/askbot/templates/email/rejected_post.html
blob: 7106d37f9a36bbb5c7b853eea5bd9463e17ca3f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "email/base_mail.html"%}
{%block headline%}{% trans %} Your post was rejected. {% endtrans %}{%endblock%}
{%block title%}{% trans %} Your post was rejected. {% endtrans %}{%endblock%}
{%block content %}
<p>{% trans %}Your post (copied in the end), was rejected for the following reason:{% endtrans %}</p>,
<p>{{reject_reason|safe}}</p>
<p>{% trans %}Here is your original post{% endtrans %}</p>
<p>{{post|safe}}</p>
{% endblock %}
{%block footer %}
{% include "email/footer.html" %}
{% endblock %}