92 lines
3.5 KiB
Twig
92 lines
3.5 KiB
Twig
{{ header }}{{ column_left }}
|
|
<div id="content">
|
|
<div class="page-header">
|
|
<div class="container-fluid">
|
|
<div class="float-end"><button type="button" data-bs-toggle="tooltip" title="{{ button_filter }}" onclick="$('#filter-online').toggleClass('d-none');" class="btn btn-light d-md-none"><i class="fa-solid fa-filter"></i></button>
|
|
<button type="button" id="button-refresh" data-bs-toggle="tooltip" title="{{ button_refresh }}" class="btn btn-light"><i class="fa-solid fa-rotate"></i></button>
|
|
</div>
|
|
<h1>{{ heading_title }}</h1>
|
|
<ol class="breadcrumb">
|
|
{% for breadcrumb in breadcrumbs %}
|
|
<li class="breadcrumb-item"><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
|
|
{% endfor %}
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div id="filter-online" class="col-lg-3 col-md-12 order-lg-last d-none d-lg-block mb-3">
|
|
<div class="card">
|
|
<div class="card-header"><i class="fa-solid fa-filter"></i> {{ text_filter }}</div>
|
|
<div class="card-body">
|
|
<div class="mb-3">
|
|
<label class="form-label">{{ entry_customer }}</label>
|
|
<input type="text" name="filter_customer" value="" placeholder="{{ entry_customer }}" id="input-customer" data-oc-target="autocomplete-customer" class="form-control" autocomplete="off"/>
|
|
<ul id="autocomplete-customer" class="dropdown-menu"></ul>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="input-ip" class="form-label">{{ entry_ip }}</label>
|
|
<input type="text" name="filter_ip" value="" id="input-ip" placeholder="{{ entry_ip }}" class="form-control"/>
|
|
</div>
|
|
<div class="text-end">
|
|
<button type="button" id="button-filter" class="btn btn-light"><i class="fa-solid fa-filter"></i> {{ button_filter }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-9 col-md-12">
|
|
<div class="card">
|
|
<div class="card-header"><i class="fa-solid fa-list"></i> {{ text_list }}</div>
|
|
<div id="online" class="card-body">{{ list }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript"><!--
|
|
$('#online').on('click', 'thead a, .pagination a', function (e) {
|
|
e.preventDefault();
|
|
|
|
$('#online').load(this.href);
|
|
});
|
|
|
|
$('#button-filter, #button-refresh').on('click', function () {
|
|
var url = '';
|
|
|
|
var filter_customer = $('#input-customer').val();
|
|
|
|
if (filter_customer) {
|
|
url += '&filter_customer=' + encodeURIComponent(filter_customer);
|
|
}
|
|
|
|
var filter_ip = $('#input-ip').val();
|
|
|
|
if (filter_ip) {
|
|
url += '&filter_ip=' + encodeURIComponent(filter_ip);
|
|
}
|
|
|
|
$('#online').load('index.php?route=report/online.list&user_token={{ user_token }}' + url);
|
|
});
|
|
|
|
$('#input-customer').autocomplete({
|
|
'source': function (request, response) {
|
|
$.ajax({
|
|
url: 'index.php?route=customer/customer.autocomplete&user_token={{ user_token }}&filter_name=' + encodeURIComponent(request),
|
|
dataType: 'json',
|
|
success: function (json) {
|
|
response($.map(json, function (item) {
|
|
return {
|
|
label: item['name'],
|
|
value: item['customer_id']
|
|
}
|
|
}));
|
|
}
|
|
});
|
|
},
|
|
'select': function (item) {
|
|
$('#input-customer').val(item['label']);
|
|
}
|
|
});
|
|
//--></script>
|
|
{{ footer }}
|