|
{% trans "Dear" %} {{ testimonial.author_name }},
{% blocktrans with site_name=site_name %}
Thank you for your testimonial on {{ site_name }}.
We've added a response to your feedback that we'd like to share with you.
{% endblocktrans %}
{% trans "Your Testimonial" %}
{% for i in "12345"|make_list %}
{% if forloop.counter <= testimonial.rating %}
★
{% else %}
☆
{% endif %}
{% endfor %}
"{{ testimonial.content|truncatechars:300 }}"
{% trans "Our Response" %}
{{ response }}
{% if site_url %}
{% endif %}
{% trans "We appreciate your feedback and thank you for being a valued customer. Feel free to reach out if you have any further questions!" %}
|