166 lines
6.3 KiB
PHP
Executable File
166 lines
6.3 KiB
PHP
Executable File
<!--sidebar end-->
|
||
<!--main content start-->
|
||
<div class="app-content content">
|
||
<section class="content-wrapper">
|
||
<div class="row">
|
||
<div class="col-12">
|
||
<div class="card">
|
||
<div class="card-header">
|
||
<div class="row">
|
||
<div class="col-md-6">
|
||
<h3 class="font-weight-bold"><?php echo lang('Group List'); ?></h3>
|
||
</div>
|
||
|
||
<div class="col-md-6 no-print pull-right">
|
||
<!-- <a href="groups/addNewView">
|
||
<div class="btn-group pull-right">
|
||
<button id="" class="btn green btn-xs">
|
||
<i class="fa fa-plus-circle"></i> <?php echo lang('add_new'); ?>
|
||
</button>
|
||
</div>
|
||
</a> -->
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<hr class="mt-0 mb-0" />
|
||
<div class="card-content collapse show">
|
||
<div class="card-body card-dashboard">
|
||
<div class="panel-body">
|
||
<div class="adv-table editable-table ">
|
||
<div class="space15"></div>
|
||
<table class="table table-striped table-bordered dom-jQuery-events" id="editable-sample" cellspacing="0" width="100%">
|
||
<thead>
|
||
<tr>
|
||
<th><?php echo lang('group'); ?> <?php echo lang('id'); ?></th>
|
||
<th><?php echo lang('Name'); ?></th>
|
||
<th><?php echo lang('Description'); ?></th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</div>
|
||
|
||
<!--main content end-->
|
||
<!--footer start-->
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<!-- Add Group Modal-->
|
||
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display: none;">
|
||
<div class="modal-dialog">
|
||
<div class="modal-content">
|
||
<div class="modal-header">
|
||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||
<h4 class="modal-title"> Add New Group <?php //echo lang('add_new_group'); ?></h4>
|
||
</div>
|
||
<div class="modal-body row">
|
||
<form role="form" action="groups/addNew" class="clearfix" method="post" enctype="multipart/form-data">
|
||
<div class="form-group col-md-6">
|
||
<label for="exampleInputEmail1"><?php echo lang('name'); ?></label>
|
||
<input type="text" class="form-control" name="name" id="exampleInputEmail1" value='' placeholder="Group Name">
|
||
</div>
|
||
<div class="form-group col-md-12">
|
||
<label for="exampleInputEmail1"><?php echo lang('description'); ?></label>
|
||
<input type="text" class="form-control" name="description" id="exampleInputEmail1" value='' placeholder="Group Description">
|
||
</div>
|
||
|
||
<div class="form-group col-md-12">
|
||
<button type="submit" name="submit" class="btn btn-info pull-right"><?php echo lang('submit'); ?></button>
|
||
</div>
|
||
|
||
</form>
|
||
|
||
</div>
|
||
</div><!-- /.modal-content -->
|
||
</div><!-- /.modal-dialog -->
|
||
</div>
|
||
<!-- Add Group Modal-->
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<script>
|
||
$(document).ready(function () {
|
||
var table = $('#editable-sample').DataTable({
|
||
responsive: true,
|
||
|
||
"processing": true,
|
||
"serverSide": true,
|
||
"searchable": true,
|
||
"ajax": {
|
||
url: "groups/getGroups",
|
||
type: 'POST',
|
||
data: {
|
||
'<?php echo $this->security->get_csrf_token_name(); ?>' : '<?php echo $this->security->get_csrf_hash(); ?>'
|
||
},
|
||
},
|
||
scroller: {
|
||
loadingIndicator: true
|
||
},
|
||
|
||
dom: "<'row'<'col-sm-5 data-table-pagelimit'l><'col-sm-6 data-table-search'f><'col-sm-1 text-center data-table-button-collection'B>>" +
|
||
"<'row'<'col-sm-12 data-table-body'tr>>" +
|
||
"<'row'<'col-sm-5 data-table-pagecountsummary'i><'col-sm-7 data-table-pagination'p>>",
|
||
buttons: [
|
||
{
|
||
extend: 'collection',
|
||
text: '...',
|
||
buttons: [
|
||
'copyHtml5',
|
||
'excelHtml5',
|
||
'csvHtml5',
|
||
'pdfHtml5',
|
||
{
|
||
extend: 'print',
|
||
exportOptions: {
|
||
columns: [0, 1, 2, 3, 4, 5, 6],
|
||
}
|
||
}
|
||
]
|
||
},
|
||
],
|
||
|
||
aLengthMenu: [
|
||
[10, 25, 50, 100, -1],
|
||
[10, 25, 50, 100, "All"]
|
||
],
|
||
iDisplayLength: 100,
|
||
"order": [[0, "desc"]],
|
||
|
||
"language": {
|
||
"lengthMenu": "_MENU_",
|
||
search: "_INPUT_",
|
||
"url": "common/assets/DataTables/languages/<?php echo $this->language; ?>.json"
|
||
}
|
||
});
|
||
table.buttons().container().appendTo('.custom_buttons');
|
||
});
|
||
</script>
|
||
|
||
|
||
|
||
|
||
<script>
|
||
$(document).ready(function () {
|
||
$(".flashmessage").delay(3000).fadeOut(100);
|
||
});
|
||
</script>
|
||
|