[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
e-learning
/
application
/
views
/
default
/
[
Home
]
File: list-pengumuman.html
{% extends "layout-private.html" %} {% block title %} Pengumuman - {{ parent() }} {% endblock %} {% block content %} <div class="module"> <div class="module-head"> <h3>Pengumuman</h3> </div> <div class="module-body"> {{ get_flashdata('pengumuman')|raw }} <div class="clearfix"> <div class="pull-right"> <form class="form-search" method="get" action="{{ site_url('pengumuman/index/' ~ page_no ~ '/') }}"> <div class="input-append"> <input type="text" class="span3 search-query" placeholder="cari pengumuman..." name="q" value="{{ keyword }}"> <button type="submit" class="btn"><i class="icon-search"></i></button> </div> </form> </div> <div class="pull-left"> {% if is_siswa() == false %} <a href="{{ site_url('pengumuman/add') }}" class="btn btn-primary"><i class="icon-pencil"></i> Buat</a> {% endif %} </div> </div> <br> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th width="5%">ID</th> <th>Judul</th> <th width="17%">Tgl. Tampil</th> <th width="17%">Tgl. Tutup</th> <th width="15%"></th> </tr> </thead> <tbody> {% for p in pengumuman %} <tr> <td><b>{{ p.id }}</b></td> <td><a href="{{ site_url('pengumuman/detail/' ~ p.id) }}"><b>{{ p.judul }}</b></a></td> <td>{{ tgl_indo(p.tgl_tampil) }}</td> <td>{{ tgl_indo(p.tgl_tutup) }}</td> <td> <div class="btn-group"> {% for a in p.allow_action %} {% if a == 'detail' %} <a class="btn btn-default btn-small" href="{{ site_url('pengumuman/detail/' ~ p.id) }}" data-toggle="tooltip" title="Detail"><i class="icon-zoom-in"></i></a> {% endif %} {% if a == 'edit' %} <a class="btn btn-default btn-small" href="{{ site_url('pengumuman/edit/' ~ p.id) }}" data-toggle="tooltip" title="Edit"><i class="icon-edit"></i></a> {% endif %} {% if a == 'delete' %} <a onclick="return confirm('Anda yakin ingin menghapus?')" class="btn btn-default btn-small" href="{{ site_url('pengumuman/delete/' ~ p.id) }}" data-toggle="tooltip" title="Hapus"><i class="icon-trash"></i></a> {% endif %} {% endfor %} </div> </td> </tr> {% endfor %} </tbody> </table> </div> <br> {{ pagination|raw }} </div> </div> {% endblock %}