{% extends 'admin/base.html' %} {% load static %} {% block title %}Gambar Profil HMI{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Gambar Profil HMI

Kelola gambar-gambar untuk Profil HMI

Tambah Gambar
Reset
{% if image_list %}
{% for image in image_list %}
{% if image.image %}
{{ image.title }}
{% else %}
{% endif %}

{{ image.title|default:"-" }}

{% if image.description %}

{{ image.description }}

{% endif %}
Profil HMI: {{ image.tentang_hmi.judul }}
Urutan: {{ image.order }}
Dibuat: {{ image.created_at|date:"d M Y" }}
{% if image.is_active %}Aktif{% else %}Tidak Aktif{% endif %}
{% endfor %}
{% else %}
Belum ada gambar Profil HMI

Mulai dengan menambahkan gambar pertama

Tambah Gambar
{% endif %}
{% if image_list.has_other_pages %}
Menampilkan {{ image_list.start_index }} sampai {{ image_list.end_index }} dari {{ image_list.paginator.count }} hasil
{% if image_list.has_previous %} First Prev {% endif %} {{ image_list.number }} / {{ image_list.paginator.num_pages }} {% if image_list.has_next %} Next Last {% endif %}
{% endif %}
{% endblock %}