{% extends "testimonials/dashboard/base.html" %} {% load i18n %} {% block page_description %} {% trans "Monitor key metrics and recent testimonial activity" %} {% endblock %} {% block content %}
{% trans "Total Testimonials" %}
📝
{{ total_testimonials|default:0 }}
+{{ today_count }} {% trans "today" %}
{% trans "Pending Review" %}
{{ pending_count|default:0 }}
{% trans "Review now →" %}
{% trans "Approved" %}
{{ approved_count|default:0 }}
+{{ featured_count }} {% trans "featured" %}
{% trans "Average Rating" %}
{{ avg_rating|floatformat:1 }}
★★★★★

{% trans "Status Distribution" %}

{% for item in status_distribution %}
{{ item.label }} {{ item.count }} ({{ item.percentage }}%)
{% endfor %}

{% trans "Rating Distribution" %}

{% for item in rating_distribution %}
{% for i in "12345"|make_list %} {% if forloop.counter <= item.rating %}★{% else %}☆{% endif %} {% endfor %} {{ item.count }} ({{ item.percentage }}%)
{% endfor %}

{% trans "Top Categories" %}

{% trans "View All" %}
{% for category in top_categories %} {% empty %} {% endfor %}
{% trans "Category" %} {% trans "Total" %} {% trans "Approved" %} {% trans "Avg Rating" %} {% trans "Status" %}
{{ category.name }} {{ category.total }} {{ category.approved }} {% if category.avg_rating %} {{ category.avg_rating|floatformat:1 }} ★ {% else %} {% trans "N/A" %} {% endif %} {% if category.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}
{% trans "No categories yet" %}

{% trans "Recent Testimonials" %}

{% trans "View All" %}
{% for testimonial in recent_testimonials %} {% empty %} {% endfor %}
{% trans "Author" %} {% trans "Content" %} {% trans "Rating" %} {% trans "Category" %} {% trans "Status" %} {% trans "Date" %}
{{ testimonial.author_name }}
{% if testimonial.company %}
{{ testimonial.company }}
{% endif %}
{{ testimonial.content|truncatechars:80 }}
{% for i in "12345"|make_list %} {% if forloop.counter <= testimonial.rating %}★{% else %}☆{% endif %} {% endfor %} {{ testimonial.category.name|default:"—" }} {{ testimonial.get_status_display }} {{ testimonial.created_at|date:"M d, Y" }}
{% trans "No testimonials yet" %}
{% if pending_testimonials %}

{% trans "Pending Review" %}

{% trans "Review All" %}
{% for testimonial in pending_testimonials %} {% endfor %}
{% trans "Author" %} {% trans "Content" %} {% trans "Rating" %} {% trans "Date" %} {% trans "Actions" %}
{{ testimonial.author_name }}
{% if testimonial.company %}
{{ testimonial.company }}
{% endif %}
{{ testimonial.content|truncatechars:120 }}
{% for i in "12345"|make_list %} {% if forloop.counter <= testimonial.rating %}★{% else %}☆{% endif %} {% endfor %} {{ testimonial.created_at|date:"M d, Y H:i" }} {% trans "Review" %}
{% endif %} {% endblock %}