{% extends "base.html" %} {% load static %} {% block title %}Testimonials | Admin Portal{% endblock %} {% block content %}

Testimonials

Manage testimonials displayed on the public website homepage.

Add Testimonial
{% if testimonials %}
{% for t in testimonials %} {% endfor %}
Order Name Role / Program Quote (preview) Video Published Actions
{{ t.display_order }} {% if t.photo %} {{ t.name }} {% else %} {% endif %} {{ t.name }} {{ t.role }} {% if t.program %}
{{ t.program.name }} {% endif %}
{{ t.quote }} {% if t.video_url %} {% else %} {% endif %} {% if t.is_published %} Published {% else %} Draft {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No testimonials yet

Add your first testimonial to display it on the website homepage.

Add First Testimonial
{% endif %}
Back to Dashboard
{% endblock %}