{% extends 'administration/base_administrasi2.html' %} {% load static %} {% block title %} Kelola Admin | Digipus {% endblock %} {% block content %}

Kelola Admin

Tekan tombol detail untuk informasi lebih lanjut tentang admin

Tabel Daftar Admin
{% for current in users_list %} {% endfor %}
Nama NIK Instansi Status Pilihan
Nama NIK Instansi Status Pilihan
{% if current.name %} {{ current.name }} {% else %} Superadmin {% endif %} {{ current.nik }} {{ current.instansi }} {% if current.is_active %} Active {% else %} Inactive {% endif %} {% if user.is_superuser %} {% if not current.is_superuser %} Edit {% endif %} {% endif %} Detail {% if not current.is_superuser %} {% endif %}
Aktivitas Penghapusan Akun Admin
{% if not deletion_history %} Tidak ada aktivitas penghapusan akun admin {% else %} {% for history in deletion_history %} {% endfor %} {% endif %}
Admin yang Dihapus Waktu Penghapusan Admin Penghapus
Admin yang Dihapus Waktu Penghapusan Admin Penghapus
{{ history.deleted_user_name }} {{ history.timestamp }} {{ history.deletor_admin.name }}
{% endblock %}