SMAMUGAPAY/app/Views/admin/jenjang/index.php

34 lines
1.3 KiB
PHP

<?php include('tambah.php'); ?>
<table class="table table-bordered table-sm" id="example3">
<thead>
<tr class="bg-secondary text-center">
<th width="5%">No</th>
<th width="20%">Nama</th>
<th width="40%">Keterangan</th>
<th width="10%">Status Aktif</th>
<th width="10%">Urutan</th>
<th></th>
</tr>
</thead>
<tbody>
<?php $no=1; foreach($jenjang as $jenjang) { ?>
<tr>
<td class="text-center"><?php echo $no ?></td>
<td><?php echo $jenjang->nama_jenjang ?></td>
<td><?php echo $jenjang->keterangan ?></td>
<td class="text-center">
<?php if($jenjang->status_aktif=='Ya') { ?>
<span class="badge bg-secondary"><i class="fa fa-eye"></i> <?php echo $jenjang->status_aktif ?></span>
<?php }else{ ?>
<span class="badge bg-light"><i class="fa fa-eye-slash"></i> <?php echo $jenjang->status_aktif ?></span>
<?php } ?>
</td>
<td class="text-center"><?php echo $jenjang->urutan ?></td>
<td>
<a href="<?php echo base_url('admin/jenjang/edit/'.$jenjang->id_jenjang) ?>" class="btn btn-success btn-xs mb-1"><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url('admin/jenjang/delete/'.$jenjang->id_jenjang) ?>" class="btn btn-dark btn-sm delete-link"><i class="fa fa-trash"></i></a>
</td>
</tr>
<?php $no++; } ?>
</tbody>
</table>