[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
tracer
/
application
/
views
/
admin_next
/
[
Home
]
File: bg_uts_genap.php
<!DOCTYPE html> <html> <head> <title></title> <script type="text/javascript"> $(document).ready(function(){ $('.data').DataTable(); }); $(document).ready(function() { $(".various").fancybox({ maxWidth : 900, maxHeight : 900, fitToView : false, width : '90%', height : '90%', autoSize : false, closeClick : false, openEffect : 'none', closeEffect : 'none' });}); </script> </head> <body> <table class="table table-striped table-bordered data" border="1" cellpadding="5" cellspacing="0" width="100%" style="border-collapse: collapse;"> <thead> <tr> <th height=27>No.</th><th>NIM</th><th>Nama Mahasiswa</th><th>Jurusan</th><th>Angkatan</th><th>Status Persetujuan</th><th width=100>Input Nilai</th> </tr> </thead> <tbody> <?php $no=1; foreach($mhs->result_array() as $k) { $st = ""; if($k['uts_genap']=='1'){ $st = "Sudah Disetujui"; $warna = "#ccc"; $link = base_url().'edit/detail_krs/'.$k['nim'].'/'.$k['uts_genap']; $cf = "example_group"; } echo'<tr> <td align="center">'.$no.'</td><td>'.$k['nim'].'</td><td>'.$k['nama_mahasiswa'].'</td><td>'.$k['jurusan'].'</td><td align="center"> '.$k['angkatan'].'</td><td align="center">'.$st.'</td>'; echo'<td> <a href="'.base_url().'admin_next/persetujuan_uts/'.$k['nim'].'" title="Masukkan Nilai - '.$k[ 'nama_mahasiswa'].'" class="various" data-fancybox-type="iframe"><i class="green ace-icon fa fa-pencil bigger-130"></a></td> </tr>'; $no++; } ?> </tbody> </table> </body> </html>