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

Data RW

Kelola data Rukun Warga (RW) di desa

Filter & Pencarian
Reset
Daftar RW
{% if page_obj.object_list %}
{% for rw in page_obj.object_list %} {% endfor %}
No Dusun Nomor RW Ketua RW Jumlah Penduduk Jumlah RT Status Aksi
{{ forloop.counter|add:page_obj.start_index|add:"-1" }} {{ rw.dusun.name }} RW {{ rw.rw_number }} {% if rw.ketua_rw %}
{{ rw.ketua_rw.name }}
{{ rw.ketua_rw.nik }}
{% else %} Belum ditentukan {% endif %}
{{ rw.get_population_count }} orang {{ rw.get_rt_count }} RT {% if rw.is_active %} Aktif {% else %} Tidak Aktif {% endif %}
Menampilkan {{ page_obj.start_index|default:0 }} - {{ page_obj.end_index|default:0 }} dari {{ page_obj.paginator.count|default:0 }} data
{% if page_obj.has_other_pages %} {% endif %} {% else %}
Belum ada data RW

Klik tombol "Tambah RW" untuk menambahkan data RW pertama

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}