{% extends 'admin/base.html' %} {% block title %}Testimonial - Admin Panel{% endblock %} {% block page_title %}Testimonial{% endblock %} {% block content %}

Testimonial

Kelola testimonial website

{% for item in testimonial %} {% empty %} {% endfor %}
Testimonial Nama Posisi/Perusahaan Rating Status Aksi
{% if item.image %} {{ item.name }} {% else %}
{% endif %}
{{ item.content|truncatechars:50 }}
{{ item.name }}
{% if item.position %}{{ item.position }}{% endif %} {% if item.position and item.company %} - {% endif %} {% if item.company %}{{ item.company }}{% endif %}
{% for i in "12345" %} {% if forloop.counter <= item.rating %} {% else %} {% endif %} {% endfor %} ({{ item.rating }})
{% if item.is_active %}Aktif{% else %}Tidak Aktif{% endif %}

Belum ada testimonial

{% if testimonial.has_other_pages %}
{% if testimonial.has_previous %} Previous {% endif %} {% if testimonial.has_next %} Next {% endif %}
{% endif %}
{% endblock %}