|
{% trans "Dear" %} {{ testimonial.author_name }},
{% blocktrans with site_name=site_name %}
Great news! Your testimonial has been approved and is now live on {{ site_name }}.
Thank you for taking the time to share your experience with us!
{% endblocktrans %}
{% trans "Your Testimonial" %}
{% for i in "12345"|make_list %}
{% if forloop.counter <= testimonial.rating %}
★
{% else %}
☆
{% endif %}
{% endfor %}
"{{ testimonial.content|truncatechars:200 }}"
{% if site_url %}
{% endif %}
{% trans "Your feedback helps others make informed decisions. Thank you for being a valued customer!" %}
|