{% extends "testimonials/dashboard/base.html" %} {% load i18n %} {% block page_description %} {% trans "Manage and analyze testimonial categories" %} {% endblock %} {% block content %}
| {% trans "Category" %} | {% trans "Total" %} | {% trans "Pending" %} | {% trans "Approved" %} | {% trans "Avg Rating" %} | {% trans "Status" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|
|
{{ category.name }}
{% if category.description %}
{{ category.description|truncatechars:60 }}
{% endif %}
|
{{ category.total }} | {% if category.pending > 0 %} {{ category.pending }} {% else %} 0 {% endif %} | {{ category.approved }} | {% if category.avg_rating %} {% else %} — {% endif %} | {% if category.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} | {% trans "Edit" %} |
{% trans "Create your first category to organize testimonials" %}
➕ {% trans "Create First Category" %}