{% extends 'admin_panel/base.html' %} {% load static %} {% load role_permissions %} {% block page_title %}Data Penduduk{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Data Penduduk

Kelola data penduduk desa secara terpusat

{% if user|can_add:"references" %} Tambah {% endif %} Global Import Export Dashboard
Filter & Pencarian
Reset
Daftar Penduduk
Menampilkan {{ page_obj.start_index|default:0 }} - {{ page_obj.end_index|default:0 }} dari {{ page_obj.paginator.count|default:0 }} {{ page_obj.start_index|default:0 }}-{{ page_obj.end_index|default:0 }}/{{ page_obj.paginator.count|default:0 }}
Geser ke kanan untuk melihat lebih banyak
{% if page_obj %} {% for penduduk in page_obj %} {% endfor %} {% else %} {% endif %}
No Foto Nama NIK No KK Dusun Gender Status Aksi
{{ forloop.counter|add:page_obj.start_index|add:"-1" }} {% if penduduk.photo and penduduk.photo.url %} {{ penduduk.name }} {% else %}
{% endif %}
{{ penduduk.name }}
{% if penduduk.nik %}{{ penduduk.nik|slice:":4" }}...{% else %}-{% endif %} {{ penduduk.nik|default:"-" }} {% if penduduk.kk_number %}{{ penduduk.kk_number|slice:":4" }}...{% else %}-{% endif %} {{ penduduk.kk_number|default:"-" }} {{ penduduk.dusun.name|default:"-" }} {{ penduduk.gender }} {% if penduduk.is_active %}Aktif{% else %}Tidak{% endif %}
{% if user|can_change:"references" %} {% endif %} {% if user|can_delete:"references" %} {% endif %}
Tidak ada data penduduk

Gunakan tombol "Tambah Penduduk" untuk menambah data

{% if page_obj %} {% for penduduk in page_obj %}
{% if penduduk.photo and penduduk.photo.url %} {{ penduduk.name }} {% else %}
{% endif %}
{{ penduduk.name }}
{{ penduduk.nik }}
{{ penduduk.gender }} {% if penduduk.is_active %}Aktif{% else %}Tidak Aktif{% endif %}
{{ penduduk.dusun.name|default:"-" }}
{% endfor %} {% else %}
Tidak ada data penduduk

Gunakan tombol "Tambah Penduduk" di atas untuk menambahkan data baru

{% endif %}
{% if page_obj.has_other_pages %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}