2019-11-12 05:16:59 +01:00
|
|
|
<?php
|
|
|
|
//Template dashboard
|
|
|
|
|
|
|
|
$this->render('incs/head', ['title' => 'Phones - Show All'])
|
|
|
|
?>
|
|
|
|
<div id="wrapper">
|
|
|
|
<?php
|
2020-08-17 21:05:01 +02:00
|
|
|
$this->render('incs/nav', ['page' => 'phones'])
|
2019-11-12 05:16:59 +01:00
|
|
|
?>
|
|
|
|
<div id="page-wrapper">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<!-- Page Heading -->
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<h1 class="page-header">
|
|
|
|
Dashboard <small>Téléphones</small>
|
|
|
|
</h1>
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li>
|
|
|
|
<i class="fa fa-dashboard"></i> <a href="<?php echo \descartes\Router::url('Dashboard', 'show'); ?>">Dashboard</a>
|
|
|
|
</li>
|
|
|
|
<li class="active">
|
|
|
|
<i class="fa fa-phone"></i> Téléphones
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- /.row -->
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<h3 class="panel-title"><i class="fa fa-phone fa-fw"></i> Liste des téléphones</h3>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<form method="GET">
|
2020-09-23 03:02:13 +02:00
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-bordered table-hover table-striped datatable" id="table-phones">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>Nom</th>
|
|
|
|
<th>Adaptateur</th>
|
|
|
|
<th>Callbacks</th>
|
|
|
|
<th class="checkcolumn">✓</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div class="col-xs-6 no-padding">
|
|
|
|
<a class="btn btn-success" href="<?php echo \descartes\Router::url('Phone', 'add'); ?>"><span class="fa fa-plus"></span> Ajouter un téléphone</a>
|
2020-02-21 04:07:33 +01:00
|
|
|
</div>
|
2020-09-23 03:02:13 +02:00
|
|
|
<div class="text-right col-xs-6 no-padding">
|
|
|
|
<strong>Action pour la séléction :</strong>
|
|
|
|
<button class="btn btn-default btn-confirm" type="submit" formaction="<?php echo \descartes\Router::url('Phone', 'delete', ['csrf' => $_SESSION['csrf']]); ?>"><span class="fa fa-trash-o"></span> Supprimer</button>
|
2019-11-12 05:16:59 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
2020-09-23 03:02:13 +02:00
|
|
|
jQuery(document).ready(function ()
|
|
|
|
{
|
|
|
|
jQuery('.datatable').DataTable({
|
|
|
|
"pageLength": 25,
|
|
|
|
"bLengthChange": false,
|
|
|
|
"language": {
|
|
|
|
"url": HTTP_PWD + "/assets/js/datatables/french.json",
|
|
|
|
},
|
|
|
|
"columnDefs": [{
|
|
|
|
'targets': 'checkcolumn',
|
|
|
|
'orderable': false,
|
|
|
|
}],
|
|
|
|
|
|
|
|
"ajax": {
|
|
|
|
'url': '<?php echo \descartes\Router::url('Phone', 'list_json'); ?>',
|
|
|
|
'dataSrc': 'data',
|
|
|
|
},
|
|
|
|
"columns" : [
|
|
|
|
{data: 'id', render: jQuery.fn.dataTable.render.text()},
|
|
|
|
{data: 'name', render: jQuery.fn.dataTable.render.text()},
|
|
|
|
{data: 'name', render: jQuery.fn.dataTable.render.text()},
|
|
|
|
{
|
|
|
|
data: '_',
|
|
|
|
render: function (data, type, row, meta) {
|
|
|
|
var html = '<div class="bold">Réception d\'un SMS : </div>';
|
|
|
|
|
|
|
|
if (row.callback_reception) {
|
|
|
|
html += '<div><code>' + row.callback_reception + '</code></div>';
|
|
|
|
} else {
|
|
|
|
html += '<div>Non disponible.</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
html += '<br/>';
|
|
|
|
html += '<div class="bold">Changement de statut d\'un SMS : </div>';
|
|
|
|
|
|
|
|
if (row.callback_status) {
|
|
|
|
html += '<div><code>' + row.callback_status + '</code></div>';
|
|
|
|
} else {
|
|
|
|
html += '<div>Non disponible.</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return html;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
data: 'id',
|
|
|
|
render: function (data, type, row, meta) {
|
|
|
|
return '<input name="ids[]" type="checkbox" value="' + data + '">';
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
"deferRender": true
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
2019-11-12 05:16:59 +01:00
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
$this->render('incs/footer');
|