- Report: Added printable reports for all categories. - Dashboard: Fixed broken links and implemented gender balance filtering. - Logic: Auto-integration of Arrivals and Births into Resident/KK data. - Fix: Solved deletion popup bug in Birth Data. - Feature: Added Full KK History view. - Feature: Implemented Dynamic Village Profile for letter templates.
91 lines
2.5 KiB
PHP
91 lines
2.5 KiB
PHP
<div class="card card-info">
|
|
<div class="card-header">
|
|
<h3 class="card-title">
|
|
<i class="fa fa-table"></i> Data Penduduk</h3>
|
|
</div>
|
|
<!-- /.card-header -->
|
|
<div class="card-body">
|
|
<div class="table-responsive">
|
|
<div>
|
|
<a href="?page=add-pend" class="btn btn-primary">
|
|
<i class="fa fa-edit"></i> Tambah Data</a>
|
|
</div>
|
|
<br>
|
|
<table id="example1" class="table table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>No</th>
|
|
<th>NIK</th>
|
|
<th>Nama</th>
|
|
<th>JK</th>
|
|
<th>Alamat</th>
|
|
<th>No KK</th>
|
|
<th>Aksi</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<?php
|
|
$no = 1;
|
|
// Filter logic
|
|
$sql_filter = "";
|
|
if(isset($_GET['jekel'])){
|
|
$jk = mysqli_real_escape_string($koneksi, $_GET['jekel']);
|
|
$sql_filter = " AND p.jekel='$jk'";
|
|
}
|
|
|
|
$sql = $koneksi->query("SELECT p.id_pend, p.nik, p.nama, p.jekel, p.desa, p.rt, p.rw, a.id_kk, k.no_kk, k.kepala from
|
|
tb_pdd p left join tb_anggota a on p.id_pend=a.id_pend
|
|
left join tb_kk k on a.id_kk=k.id_kk where status='Ada' $sql_filter");
|
|
while ($data= $sql->fetch_assoc()) {
|
|
?>
|
|
|
|
<tr>
|
|
<td>
|
|
<?php echo $no++; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $data['nik']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $data['nama']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $data['jekel']; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $data['desa']; ?>
|
|
RT
|
|
<?php echo $data['rt']; ?>/ RW
|
|
<?php echo $data['rw']; ?>.
|
|
</td>
|
|
<td>
|
|
<?php echo $data['no_kk']; ?>-
|
|
<?php echo $data['kepala']; ?>
|
|
</td>
|
|
|
|
<td>
|
|
<a href="?page=view-pend&kode=<?php echo $data['id_pend']; ?>" title="Detail"
|
|
class="btn btn-info btn-sm">
|
|
<i class="fa fa-user"></i>
|
|
</a>
|
|
<a href="?page=edit-pend&kode=<?php echo $data['id_pend']; ?>" title="Ubah"
|
|
class="btn btn-success btn-sm">
|
|
<i class="fa fa-edit"></i>
|
|
</a>
|
|
<a href="?page=del-pend&kode=<?php echo $data['id_pend']; ?>" onclick="return confirm('Apakah anda yakin hapus data ini ?')"
|
|
title="Hapus" class="btn btn-danger btn-sm">
|
|
<i class="fa fa-trash"></i>
|
|
</>
|
|
</td>
|
|
</tr>
|
|
|
|
<?php
|
|
}
|
|
?>
|
|
</tbody>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<!-- /.card-body -->
|