{% extends "testimonials/dashboard/base.html" %} {% load i18n %} {% block page_description %} {% trans "Review and moderate pending testimonials" %} {% endblock %} {% block content %}

{% trans "Pending Testimonials" %} ({{ pending_count }})

{% trans "View in Admin" %}
{% if pending_testimonials %}
{% for testimonial in pending_testimonials %}

{{ testimonial.author_name }}

{% for i in "12345"|make_list %} {% if forloop.counter <= testimonial.rating %}★{% else %}☆{% endif %} {% endfor %}
{% if testimonial.company %}{{ testimonial.company }} • {% endif %} {% if testimonial.category %}{{ testimonial.category.name }} • {% endif %} {{ testimonial.created_at|date:"M d, Y H:i" }}
{% trans "Pending" %}

{{ testimonial.content }}

{% if testimonial.author_email or testimonial.author_phone or testimonial.location %}
{% if testimonial.author_email %}
📧 {{ testimonial.author_email }}
{% endif %} {% if testimonial.author_phone %}
📱 {{ testimonial.author_phone }}
{% endif %} {% if testimonial.location %}
📍 {{ testimonial.location }}
{% endif %}
{% endif %}
{% trans "Review & Edit" %}
{% endfor %}
{% else %}
🎉

{% trans "All caught up!" %}

{% trans "There are no pending testimonials to review." %}

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}