{% extends "dashboard/base.html" %} {% load i18n static %} {% block title %}{% trans "Testimonials" %}{% endblock %} {% block content %}

{% trans "Testimonials" %}

{% trans "Add testimonial" %}

{% trans "Manage client testimonials displayed on the website." %}

{% if testimonials %}
{% for t in testimonials %} {% endfor %}
{% trans "Client" %} {% trans "Content" %} {% trans "Rating" %} {% trans "Status" %} {% trans "Order" %} {% trans "Actions" %}
{{ t.client_name }}
{% if t.title or t.company %}
{{ t.title }}{% if t.title and t.company %}, {% endif %}{{ t.company }}
{% endif %} {% if t.website %} {% endif %}
{{ t.content|truncatechars:160 }}
{% for i in "12345" %} {% if forloop.counter <= t.rating %} ★ {% else %} {% endif %} {% endfor %}
{{ t.rating }} / 5
{% if t.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} {{ t.sort_order }} {% trans "Edit" %} {% trans "Delete" %}
{% else %}
{% trans "No testimonials yet. Add one to get started." %}
{% endif %} {% endblock %}