{% extends "testimonials/dashboard/base.html" %} {% load i18n %} {% block page_description %} {% trans "Manage and analyze testimonial categories" %} {% endblock %} {% block content %}

{% trans "Categories" %} ({{ total_categories }})

{% if categories %}
{% for category in categories %} {% endfor %}
{% 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 %} {{ category.avg_rating|floatformat:1 }} ★ {% else %} {% endif %} {% if category.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} {% trans "Edit" %}
{% else %}
🏷️

{% trans "No categories yet" %}

{% trans "Create your first category to organize testimonials" %}

➕ {% trans "Create First Category" %}
{% endif %}
{% if categories %}

{% trans "Category Performance" %}

{% for category in categories|slice:":5" %}
{{ category.name }} {{ category.approved }} / {{ category.total }} {% trans "approved" %} {% if category.total > 0 %}({% widthratio category.approved category.total 100 %}%){% else %}(0%){% endif %}
{% if category.total > 0 %}
{% endif %}
{% endfor %}
{% endif %} {% endblock %}