Enhance pendatang module with existing resident selection, standardize UI gender display to LAKI-LAKI/PEREMPUAN, add Jenis Kelamin columns to pindah/mendu tables, fix NIK display in reports, and implement security improvements
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
<th>No</th>
|
||||
<th>NIK</th>
|
||||
<th>Nama</th>
|
||||
<th>JK</th>
|
||||
<th>Jenis Kelamin</th>
|
||||
<th>Alamat</th>
|
||||
<th>No KK</th>
|
||||
<th>Aksi</th>
|
||||
@@ -59,7 +59,15 @@
|
||||
<?php echo $data['nama']; ?>
|
||||
</td>
|
||||
<td>
|
||||
<?php echo $data['jekel']; ?>
|
||||
<?php
|
||||
if ($data['jekel'] == 'LK') {
|
||||
echo 'LAKI-LAKI';
|
||||
} elseif ($data['jekel'] == 'PR') {
|
||||
echo 'PEREMPUAN';
|
||||
} else {
|
||||
echo $data['jekel'];
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
<td>
|
||||
<?php echo $data['desa']; ?>
|
||||
|
||||
Reference in New Issue
Block a user