{% extends "admin/layout.html" %} {% let active_page = "testimonials" %} {% block title %}{{ t.testimonials_title }}{% endblock %} {% block content %}

{{ t.testimonials_title }}

{{ t.testimonials_add_title }}

{% if testimonials.is_empty() %}

{{ t.testimonials_empty }}

{% else %} {% for item in &testimonials %}
{% if item.image_path.is_some() %} {% endif %}
{{ item.text }}
{% if let Some(note) = item.author_note.as_deref() %}
{{ note }}
{% endif %}
{% if item.status == "active" %}{{ t.testimonials_status_active }}{% else %}{{ t.testimonials_status_hidden }}{% endif %}
{% if item.status == "active" %} {% else %} {% endif %}
{% endfor %} {% endif %} {% endblock %}