{% load i18n static %} {% load utils_tags %}
{% trans "What Our Customers Say" %}
{% for t in testimonials %}
{% if t.image %} {{ t.client_name }} {% endif %}

“{{ t.content|truncatechars:220 }}”

{% if t.website and not t.company %} {{ t.client_name }} {% else %} {{ t.client_name }} {% endif %}
{% if t.title or t.company %}
{{ t.title }}{% if t.title and t.company %}, {% endif %} {% if t.company %} {% if t.website %} {{ t.company }} {% else %} {{ t.company }} {% endif %} {% endif %}
{% endif %}
{% for _ in "12345" %} {% if forloop.counter <= t.rating %} ★ {% else %} {% endif %} {% endfor %}
{% empty %}
{% trans "No testimonials available yet." %}
{% endfor %}