{% extends "dashboard/base.html" %} {% load dash_extras %} {% block header_actions %} {% if create_url %} {% endif %} {% endblock %} {% block content %} {% if searchable %}
{% if query %}Reset{% endif %}
{% endif %} {% if object_list %}
{% for obj in object_list %}
{% for col in columns %} {% get_attr obj col.field as val %}
{{ col.label }} {% if col.type == 'bool' %} {% if val %}Ya{% else %}Tidak{% endif %} {% elif col.type == 'level' %} {{ val }}% {% elif col.type == 'date' %} {{ val|date:"d M Y" }} {% elif col.type == 'strong' %} {{ val }} {% else %} {{ val|default:"—"|truncatechars:60 }} {% endif %}
{% endfor %}
{% if reorder_key %}
{% csrf_token %}
{% csrf_token %}
{% endif %} Edit Hapus
{% endfor %}
{% include "dashboard/partials/pagination.html" %} {% else %}

📭

Belum ada data

{% if query %}Tidak ada hasil untuk "{{ query }}".{% else %}Klik tombol tambah untuk membuat data pertama.{% endif %}

{% if create_url and not query %} Tambah Sekarang {% endif %}
{% endif %} {% endblock %}