{% extends 'admin/base.html' %} {% block title %}Testimonial - Admin Panel{% endblock %} {% block page_title %}Testimonial{% endblock %} {% block content %}
Kelola testimonial website
| Testimonial | Nama | Posisi/Perusahaan | Rating | Status | Aksi |
|---|---|---|---|---|---|
|
{% if item.image %}
{{ 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 |
|||||