{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}{{ action }} Testimonial | Admin Portal{% endblock %} {% block content %}

{{ action }} Testimonial

{% if action == 'Add' %}Add a new testimonial to display on the homepage carousel.{% else %}Update this testimonial's content.{% endif %}

{% if testimonial and testimonial.photo %}
{{ testimonial.name }}
{{ testimonial.name }}

Current photo — upload a new file below to replace it.

{% endif %}
{% csrf_token %} {% crispy form %}
Tips: Set Published to make the testimonial visible on the website. Use Display Order to control the carousel sequence (lower = first). YouTube video URL is optional — paste the full watch or share link.
{% endblock %}