|
@@ -1,52 +1,6 @@
|
|
|
-<div class="mt-2 mb-3">
|
|
|
+<div class="mt-2 mb-3" id="patient-dashboard-measurements">
|
|
|
<div class="d-flex align-items-center mb-2 py-2 border-top border-bottom">
|
|
|
<h6 class="my-0 font-weight-bold text-secondary">Measurements</h6>
|
|
|
-
|
|
|
- {{--
|
|
|
- <span class="mx-2 text-secondary">|</span>
|
|
|
- <div moe>
|
|
|
- <a start show class="py-0 font-weight-normal">Add BP</a>
|
|
|
- <form url="/api/measurement/createForBP">
|
|
|
- <input type="hidden" name="clientUid" value="{{ $patient->uid }}">
|
|
|
- <p class="font-weight-bold text-secondary mb-2">Add BP Measurement</p>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm mb-1">Systolic BP (mmHg)</label>
|
|
|
- <input required autofocus type="number" class="form-control form-control-sm" name="sbpMmHg" value="" placeholder="Systolic BP">
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-secondary text-sm mb-1">Diastolic BP (mmHg)</label>
|
|
|
- <input required autofocus type="number" class="form-control form-control-sm" name="dbpMmHg" value="" placeholder="Diastolic BP">
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <input required type="date" class="form-control form-control-sm" name="effectiveDate" max="{{ date('Y-m-d') }}" value="{{ date('Y-m-d') }}">
|
|
|
- </div>
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <button class="btn btn-sm btn-primary mr-2" submit>Save</button>
|
|
|
- <button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <span class="mx-2 text-secondary">|</span>
|
|
|
- <div moe>
|
|
|
- <a start show class="py-0 font-weight-normal">Add Weight</a>
|
|
|
- <form url="/api/measurement/create">
|
|
|
- <input type="hidden" name="clientUid" value="{{ $patient->uid }}">
|
|
|
- <input type="hidden" name="label" value="Wt. (lbs.)">
|
|
|
- <p class="font-weight-bold text-secondary mb-2">Add Weight Measurement</p>
|
|
|
- <div class="mb-2">
|
|
|
- <input required type="number" class="form-control form-control-sm" name="value" value="" placeholder="Weight">
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <input required type="date" class="form-control form-control-sm" name="effectiveDate" max="{{ date('Y-m-d') }}" value="{{ date('Y-m-d') }}">
|
|
|
- </div>
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <button class="btn btn-sm btn-primary mr-2" submit>Save</button>
|
|
|
- <button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- --}}
|
|
|
-
|
|
|
<span class="mx-2 text-secondary">|</span>
|
|
|
<a start show class="py-0 font-weight-normal"
|
|
|
href="/patients/view/{{ $patient->uid }}/measurements">
|
|
@@ -76,7 +30,7 @@
|
|
|
<a href="#" start show>
|
|
|
<i class="fa fa-check text-secondary on-hover-opaque mr-2" title="Not Stamped. Click to stamp."></i>
|
|
|
</a>
|
|
|
- <form url="/api/measurement/stamp" class="width-300px">
|
|
|
+ <form url="/api/measurement/stamp" class="width-300px" target="#patient-dashboard-measurements">
|
|
|
<input type="hidden" name="uid" value="{{$measurement->uid}}">
|
|
|
<p class="mb-1">Stamp this measurement?</p>
|
|
|
<div class="mb-2">
|