|
{% trans "Dear" %} {{ testimonial.author_name }},
{% blocktrans with site_name=site_name %}
Thank you for submitting your testimonial to {{ site_name }}.
After careful review, we're unable to publish your testimonial at this time.
{% endblocktrans %}
{% if testimonial.rejection_reason %}
{% trans "Reason" %}
{{ testimonial.rejection_reason }}
{% endif %}
{% trans "Your Submitted Testimonial" %}
{% for i in "12345"|make_list %}
{% if forloop.counter <= testimonial.rating %}
★
{% else %}
☆
{% endif %}
{% endfor %}
"{{ testimonial.content|truncatechars:200 }}"
{% trans "We appreciate your feedback and encourage you to submit another testimonial in the future. If you have any questions, please don't hesitate to contact us." %}
|