{% extends "admin/base.html" %} {% import "admin/_macros.html" as macros %} {% block page_title %}Відгуки{% endblock %} {% block content %}

⭐ Відгуки клієнтів

{% if ratings.count %}
{{ ratings.average }}
{{ '⭐' * ratings.average_rounded }}{{ '☆' * (5 - ratings.average_rounded) }}
{{ ratings.count }} {{ ratings.count_label }}
{% for n in [5, 4, 3, 2, 1] %}
{{ n }} ⭐
{{ ratings.distribution[n] }}
{% endfor %}
{% else %}
Оцінок ще немає — клієнти отримують запит з кнопками 1-5 після статусу «Виконано» (можна вимкнути в Налаштуваннях).
{% endif %}
{% if ratings.count %}
Усі ({{ ratings.count }}) {% for n in [5, 4, 3, 2, 1] %} {{ n }} ⭐ ({{ ratings.distribution[n] }}) {% endfor %}
{% endif %}
{% for o in reviews %} {% else %} {% endfor %}
ДатаЗамовленняКлієнтТипОцінка
{{ o.rated_at.strftime('%d.%m.%Y %H:%M') if o.rated_at else '' }} {{ o.display_number() }} {{ o.customer_name }}
{{ o.customer_phone }}
{{ macros.order_type_badge(o.order_type) }} {{ '⭐' * o.rating }}{{ '☆' * (5 - o.rating) }}
{{ 'Відгуків з такою оцінкою ще немає' if score else 'Відгуків ще немає' }}
{% if pagination.pages > 1 %} {% endif %}
{% endblock %}