Files
2025-10-09 11:03:05 +07:00

54 lines
2.1 KiB
PHP

<?php include "header.php"; ?>
<nav class="navbar navbar-expand-md btn-group" style="background: rgb(162,210,178);
background: linear-gradient(285deg, rgba(162,210,178,1) 15%, rgba(116,198,14,1) 100%); font-size:9pt;">
<div class="container-fluid">
<div class="btn-group">
<a class="btn btn-outline-danger btn-sm active" aria-current="page" href="/home.php" title="Home">Home</a>
<a href="#" class="btn btn-outline-danger btn-sm" aria-current="page" data-bs-toggle="modal" data-bs-target="#daftar_ambulan" title="input pasien baru">Add New</a>
<a href="#" class="btn btn-outline-danger btn-sm"data-bs-toggle="modal" data-bs-target="#pasien" title="Rekap Pasien jaga">Patient Report</a>
<a class="btn btn-outline-danger btn-sm"href="#perawat" data-bs-toggle="modal" class="dropdown-item">Log-Book</a>
<a class="btn btn-outline-danger btn-sm"href="#work" data-bs-toggle="modal" class="dropdown-item">Event</a>
<a class="btn btn-outline-danger btn-sm"href="#mainten" data-bs-toggle="modal" class="dropdown-item">Maintenance</a>
</div>
</div>
</nav>
<!-- ================================= -->
<p id="mymodal"></p>
<div class="jquery" style="margin-inline: 3pt;">
<table id="" class="table table-striped table-hover datatable" width="100%" cellspacing="0" style="font-size: 12px;">
<thead>
<tr>
<th>No</th>
<th>Nama</th>
<th>Prioritas Pelayanan</th>
<th>Alamat</th>
<th>Tujuan</th>
<th>Kru Ambulan</th>
<th>Catatan</th>
</tr>
</thead>
</table>
</div>
<script>
$(document).ready(function() {
load_dashboard_ambulan();
});
$(document).ready(function() {
load_modal_ambulan()
});
</script>
<script src="js/jquery-1.12.0.min.js"></script>
<script src="js/jquery.dataTables.min.js"></script>
<script src="js/templatescript.js"></script>
<script src="js/input.js"></script>
<?php include "footer.php"; ?>