fix
This commit is contained in:
@@ -13,12 +13,15 @@
|
||||
<table id="datatable" class="table table-borderless table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th style="width:10px;">#</th>
|
||||
<th style="width:40px;">Select</th>
|
||||
<th>Name</th>
|
||||
<th>Gender</th>
|
||||
<th>Age</th>
|
||||
<th style="width:40px;">DOB</th>
|
||||
<th>Phone</th>
|
||||
<th>Chart</th>
|
||||
<th>Status</th>
|
||||
<th>Action</th>
|
||||
<th style="width:20px;">Status</th>
|
||||
<!--th>Action</!--th-->
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -33,11 +36,14 @@
|
||||
|
||||
<tr>
|
||||
<td><?= $icc ?></td>
|
||||
<td><a href="/patient/selectPatient/<?= $prow->patient_id ?>"><button type="button" class="btn btn-info btn-sm">Select</button></a></td>
|
||||
<td><?= $prow->firstname ?> <?= $prow->lastname ?></td>
|
||||
<td><?= $prow->gender ?></td>
|
||||
<td><?= $prow->dob ?></td>
|
||||
<td><?= $prow->dob ?></td>
|
||||
<td><?= $prow->phone ?></td>
|
||||
<td><a href="/patient/chart/<?= $prow->patient_id ?>"><button type="button" class="btn btn-info btn-sm">Chart</button></a></td>
|
||||
<td><span class="badge badge-success-inverse">Active</span></td>
|
||||
<td> <a class="mr-3" href="javascript:void(0);" onclick="selectPatient(<?= $prow->patient_id ?>)" ><i class="fe fe-edit"></i></a><a href="javascript:void(0);" onclick="calendarPatient(<?= $prow->patient_id ?>)"><i class="fe fe-calendar"></i></a></td>
|
||||
<!--td> <a class="mr-3" href="javascript:void(0);" onclick="selectPatient(<?= $prow->patient_id ?>)" ><i class="fe fe-edit"></i></a><a href="javascript:void(0);" onclick="calendarPatient(<?= $prow->patient_id ?>)"><i class="fe fe-calendar"></i></a></td -->
|
||||
</tr>
|
||||
<?
|
||||
}
|
||||
@@ -48,12 +54,15 @@
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th style="width:10px;">#</th>
|
||||
<th style="width:40px;">Select</th>
|
||||
<th>Name</th>
|
||||
<th>Gender</th>
|
||||
<th>Age</th>
|
||||
<th>DOB</th>
|
||||
<th>Phone</th>
|
||||
<th>Chart</th>
|
||||
<th>Status</th>
|
||||
<th>Action</th>
|
||||
<!--th>Action</!--th-->
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
<div id="link_result">[]</div>
|
||||
</div>
|
||||
<div class="form-group col-md-3">
|
||||
<button type="submit" id="link_submit" class="btn btn-primary" onclick="return connectLinkID()">Search</button>
|
||||
<button type="submit" id="link_submit" class="btn btn-primary btn-block" onclick="return connectLinkID()">Search</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
@@ -69,7 +69,7 @@
|
||||
</a>
|
||||
<div class="dropdown-menu animated fadeIn" aria-labelledby="navbarDropdown">
|
||||
<a class="dropdown-item nav-link" href="/patient/addnew">Add Patient</a>
|
||||
<a class="dropdown-item nav-link" href="/patient/report">Find Patient</a>
|
||||
<a class="dropdown-item nav-link" href="/patient/findpatient">Find Patient</a>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item full-screen d-none d-lg-block" id="btnFullscreen">
|
||||
|
||||
Reference in New Issue
Block a user