first commit
This commit is contained in:
@@ -0,0 +1,137 @@
|
||||
<?php
|
||||
$darr = array();
|
||||
$encounter_list = isset($encounter_list) ? $encounter_list : $darr;
|
||||
//print_r($patient_list);
|
||||
$icc = 0;
|
||||
foreach ($encounter_list as $prow) {
|
||||
$icc++;
|
||||
?>
|
||||
|
||||
<div class="row active-task m-b-20">
|
||||
<div class="col-xs-1">
|
||||
<div class="bg-type mb-1 mb-xs-0 mt-1">
|
||||
<span>PP</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-11">
|
||||
<small class="d-block mb-1"><?= $prow->reason ?></small>
|
||||
<h5 class="mb-0"><a href="/patient/selectPatient/<?=$prow->patient_id?>"><?= $prow->firstname ?> <?= $prow->lastname ?></a></h5>
|
||||
<ul class="list-unstyled list-inline">
|
||||
<li class="list-inline-item">
|
||||
<small>Lizzy Halfman</small>
|
||||
</li>
|
||||
<li class="list-inline-item">|</li>
|
||||
<li class="list-inline-item">
|
||||
<small><?=$prow->appt?></small>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<?
|
||||
}
|
||||
?>
|
||||
|
||||
<!--
|
||||
|
||||
<div class="row active-task m-b-20">
|
||||
<div class="col-xs-1">
|
||||
<div class="bg-type mb-1 mb-xs-0 mt-1">
|
||||
<span>PP</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-11">
|
||||
<small class="d-block mb-1">Car dealer</small>
|
||||
<h5 class="mb-0"><a href="#">Unread utf-8 in more quick overview</a></h5>
|
||||
<ul class="list-unstyled list-inline">
|
||||
<li class="list-inline-item">
|
||||
<small> Created by Lizzy Halfman</small>
|
||||
</li>
|
||||
<li class="list-inline-item">|</li>
|
||||
<li class="list-inline-item">
|
||||
<small>Saturday, March 17 2019</small>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row active-task m-b-20">
|
||||
<div class="col-xs-1">
|
||||
<div class="bg-type bg-pink mb-1 mb-xs-0 mt-1">
|
||||
<span>SL</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-11">
|
||||
<small class="d-block mb-1">Webster HTML5 </small>
|
||||
<h5 class="mb-0"><a href="#">I get an error "No Direct Access Allowed!" when I enter purchase</a></h5>
|
||||
<ul class="list-unstyled list-inline">
|
||||
<li class="list-inline-item">
|
||||
<small> Created by Samuel Woods</small>
|
||||
</li>
|
||||
<li class="list-inline-item">|</li>
|
||||
<li class="list-inline-item">
|
||||
<small>Sunday, March 19 2019</small>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row active-task m-b-20">
|
||||
<div class="col-xs-1">
|
||||
<div class="bg-type bg-success mb-1 mb-xs-0 mt-1">
|
||||
<span>MP</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-11">
|
||||
<small class="d-block mb-1">The corps</small>
|
||||
<h5 class="mb-0"><a href="#">OAuth Credentials not generating the key</a></h5>
|
||||
<ul class="list-unstyled list-inline">
|
||||
<li class="list-inline-item">
|
||||
<small> Created by Andrew nico</small>
|
||||
</li>
|
||||
<li class="list-inline-item">|</li>
|
||||
<li class="list-inline-item">
|
||||
<small>Monday, March 21 2019</small>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row active-task m-b-20">
|
||||
<div class="col-xs-1">
|
||||
<div class="bg-type bg-orange mb-1 mb-xs-0 mt-1">
|
||||
<span>SP</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-11">
|
||||
<small class="d-block mb-1">Sam martin vCard</small>
|
||||
<h5 class="mb-0"><a href="#">Pre-Buy Questions : For bakery Shop (Mentor Android Application)</a></h5>
|
||||
<ul class="list-unstyled list-inline">
|
||||
<li class="list-inline-item">
|
||||
<small> Created by Jimmy Falicon</small>
|
||||
</li>
|
||||
<li class="list-inline-item">|</li>
|
||||
<li class="list-inline-item">
|
||||
<small>Friday, March 22 2019</small>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row active-task m-b-20">
|
||||
<div class="col-xs-1">
|
||||
<div class="bg-type bg-info mb-1 mb-xs-0 mt-1">
|
||||
<span>AP</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-11">
|
||||
<small class="d-block mb-1">Mentor admin </small>
|
||||
<h5 class="mb-0"><a href="#">I need a payment option, for each seller per item</a></h5>
|
||||
<ul class="list-unstyled list-inline">
|
||||
<li class="list-inline-item">
|
||||
<small> Created by Brian Joedon</small>
|
||||
</li>
|
||||
<li class="list-inline-item">|</li>
|
||||
<li class="list-inline-item">
|
||||
<small>Saturday, March 17 2019</small>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
-->
|
||||
@@ -0,0 +1,71 @@
|
||||
|
||||
<div class="card card-statistics h-100 m-b-30">
|
||||
<div class="card-header d-flex align-items-center justify-content-between">
|
||||
<div class="card-heading">
|
||||
<h4 class="card-title">Patients List</h4>
|
||||
</div>
|
||||
<div class="dropdown">
|
||||
<a class="btn btn-round btn-inverse-primary btn-xs" href="/patient/addnew">Add New </a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-body scrollbar scroll_dark pt-0" style="max-height: 630px;">
|
||||
<div class="datatable-wrapper table-responsive">
|
||||
<table id="datatable" class="table table-borderless table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<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 style="width:20px;">Status</th>
|
||||
<!--th>Action</!--th-->
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
$darr = array();
|
||||
$patient_list = isset($patient_list) ? $patient_list : $darr;
|
||||
//print_r($patient_list);
|
||||
$icc = 0;
|
||||
foreach ($patient_list as $prow) {
|
||||
$icc++;
|
||||
?>
|
||||
|
||||
<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><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 -->
|
||||
</tr>
|
||||
<?
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<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>Status</th>
|
||||
<!--th>Action</!--th-->
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
<div class="card card-statistics h-100 m-b-30">
|
||||
<div class="card-header d-flex align-items-center justify-content-between">
|
||||
<div class="card-heading">
|
||||
<h4 class="card-title">Patients List</h4>
|
||||
</div>
|
||||
<div class="dropdown">
|
||||
<a class="btn btn-round btn-inverse-primary btn-xs" href="/patient/addnew">Add New </a>
|
||||
<a class="btn btn-round btn-inverse-primary btn-xs" href="/patient/findpatient">Find Patient </a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-body scrollbar scroll_dark pt-0" style="max-height: 630px;">
|
||||
<div class="datatable-wrapper table-responsive">
|
||||
<table id="datatable" class="table table-borderless table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width:20px;">#</th>
|
||||
<th style="width:40px;">Select</th>
|
||||
<th>Name</th>
|
||||
<th style="width:20px;">DOB</th>
|
||||
<th style="width:20px;">Gender</th>
|
||||
<th style="width:80px;">Phone</th>
|
||||
<th style="width:50px;">Status</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
$darr = array();
|
||||
$patient_list = isset($patient_list) ? $patient_list : $darr;
|
||||
$icc = 0;
|
||||
foreach ($patient_list as $prow) {
|
||||
$icc++;
|
||||
?>
|
||||
|
||||
<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><a href="/patient/selectPatient/<?=$prow->patient_id ?>"><?= $prow->firstname ?> <?= $prow->lastname ?></a></td>
|
||||
<td><?=$prow->dob ?></td>
|
||||
<td><?=$prow->gender ?></td>
|
||||
<td><?= $prow->phone ?></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></!-->
|
||||
</tr>
|
||||
<?
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th style="width:20px;">#</th>
|
||||
<th style="width:40px;">Select</th>
|
||||
<th>Name</th>
|
||||
<th style="width:20px;">DOB</th>
|
||||
<th style="width:20px;">Gender</th>
|
||||
<th style="width:80px;">Phone</th>
|
||||
<th style="width:50px;">Status</th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user