105 lines
3.9 KiB
PHP
105 lines
3.9 KiB
PHP
<!-- Dashboard content -->
|
|
<div class="row">
|
|
<div class="col-lg-9">
|
|
<!-- Support tickets -->
|
|
<form class="search-block" action="/Bkoreport/resetreport/" method="GET" autocomplete="off">
|
|
<div class="form-group">
|
|
<label for="username">Username</label>
|
|
<input type="search" class="form-control" id="username" name="username" value='<?= isset($username) ? $username : '' ?>'>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="member_id">Member ID</label>
|
|
<input type="search" class="form-control" id="member_id" name="member_id" value='<?= isset($member_id) ? $member_id : '' ?>'>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="from_date">Created</label>
|
|
<div class="search-by-date">
|
|
<input type="search" class="form-control" id="from_date" name="from_date" value='<?= isset($from_date) ? $from_date : '' ?>'>
|
|
|
|
<input type="search" class="form-control" id="to_date" name="to_date" value='<?= isset($to_date) ? $to_date : '' ?>'>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="loc">Loc</label>
|
|
<input type="search" class="form-control" id="loc" name="loc" value='<?= isset($loc) ? $loc : '' ?>'>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="search_text">Status</label>
|
|
<?= $card_status ?>
|
|
</div>
|
|
|
|
<div class="form-group" style="display: flex; align-self: center; margin-bottom: unset;">
|
|
<button class="btn btn-primary btn-search" type="submit">Search</button>
|
|
</div>
|
|
</form>
|
|
<div class="panel panel-flat">
|
|
<div class="table-responsive">
|
|
<?= $reset_table ?>
|
|
</div>
|
|
</div>
|
|
<div class="panel panel-flat">
|
|
<div class="table-responsive"> <?= $link ?> </div>
|
|
</div>
|
|
<!-- /support tickets -->
|
|
</div>
|
|
|
|
<div class="col-lg-3">
|
|
<!-- Recent Members -->
|
|
<div class="panel panel-flat" style="background-color: #ccffff; height: 800px;">
|
|
<div id="transp_detail">
|
|
<div class="panel-heading">
|
|
<h6 class="panel-title">[ttl]</h6>
|
|
<div class="heading-elements">
|
|
<span class="heading-text">Last: <span class="text-bold text-danger-600 position-right">PUT DATA HERE</span></span>
|
|
</div>
|
|
</div>
|
|
<div class="table-responsive">
|
|
<div id="map" style="border:1px;border-style: dotted; height:750px;"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /Recent Members -->
|
|
</div>
|
|
</div>
|
|
<!-- /dashboard content -->
|
|
|
|
<script src="/assets/js/plugins/pickers/datepicker.js"></script>
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
// Datepicker
|
|
$("#from_date").datepicker({
|
|
defaultDate: "+1w",
|
|
changeMonth: true,
|
|
numberOfMonths: 3,
|
|
format: 'yyyy-mm-dd',
|
|
onClose: function(selectedDate) {
|
|
$("#from_date").datepicker("option", "minDate", selectedDate);
|
|
}
|
|
})
|
|
|
|
$("#to_date").datepicker({
|
|
defaultDate: "+1w",
|
|
changeMonth: true,
|
|
numberOfMonths: 3,
|
|
format: 'yyyy-mm-dd',
|
|
onClose: function(selectedDate) {
|
|
$("#to_date").datepicker("option", "maxDate", selectedDate);
|
|
}
|
|
})
|
|
|
|
$('#btn-search').on('click', function() {
|
|
$(this).parent('form').attr('action', '/Bkoreport/resetreport/');
|
|
})
|
|
})
|
|
</script>
|
|
<style>
|
|
.search-block {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
background: #ccffff;
|
|
}
|
|
|
|
.search-by-date {
|
|
display: flex;
|
|
}
|
|
</style>
|