|
@@ -1,4 +1,4 @@
|
|
|
-<div class="mcp-theme-1 px-3 py-2 border-top mt-3" id="remote-monitoring-measurements-{{$careMonth->id}}">
|
|
|
+<div class="mcp-theme-1 px-3 py-2 border-top mt-3 min-height-500px" id="remote-monitoring-measurements-{{$careMonth->id}}">
|
|
|
<?php
|
|
|
$stampAllEndPoint = '';
|
|
|
if(count($measurements)) {
|
|
@@ -100,7 +100,7 @@
|
|
|
@if($stampEndPoint)
|
|
|
<div moe relative>
|
|
|
<a href="#" start show>Stamp</a>
|
|
|
- <form url="{{$stampEndPoint}}" right>
|
|
|
+ <form url="{{$stampEndPoint}}" right class="width-300px">
|
|
|
<input type="hidden" name="uid" value="{{$measurement->uid}}">
|
|
|
<p class="mb-1">Stamp this measurement?</p>
|
|
|
<div class="mt-2 bg-light border p-2">
|
|
@@ -122,10 +122,19 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
@if($measurement->mcp_pro_id !== $pro->id)
|
|
|
- <label class="mb-2 d-flex align-items-baseline border border-info p-2 mt-2 bg-light width-300px">
|
|
|
- <input type="checkbox" class="mr-2" name="communicatedToPatient">
|
|
|
+ <div class="mb-2 border border-info p-2 mt-2 bg-light">
|
|
|
<span>I have had interactive communication with {{$measurement->name_first}} {{$measurement->name_last}} during this care month.</span>
|
|
|
- </label>
|
|
|
+ <div class="d-flex border-top mt-2">
|
|
|
+ <label class="mt-2 mb-0 d-inline-flex align-items-center mr-3">
|
|
|
+ <input type="radio" class="mr-2" name="communicatedToPatient" value="true">
|
|
|
+ <span>Yes</span>
|
|
|
+ </label>
|
|
|
+ <label class="mt-2 mb-0 d-inline-flex align-items-center">
|
|
|
+ <input type="radio" class="mr-2" name="communicatedToPatient" value="false" checked>
|
|
|
+ <span>No</span>
|
|
|
+ </label>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
@else
|
|
|
<input type="hidden" name="communicatedToPatient" value="false">
|
|
|
@endif
|