|
@@ -173,7 +173,7 @@
|
|
|
</section>
|
|
|
<section>
|
|
|
<div><label>Allergies:</label> Grass, Pollen, Latex</div>
|
|
|
- <div><label>Next Appt:</label> {{$patient->mcp_onboarding_visit_date}}</div>
|
|
|
+ <div><label>Next Appt:</label> {{$patient->next_appointment ? friendly_date_time($patient->next_appointment, false) : '-'}}</div>
|
|
|
</section>
|
|
|
<section class=vbox>
|
|
|
<div moe relative>
|
|
@@ -239,13 +239,14 @@
|
|
|
<div class="my-1 py-1">
|
|
|
<label class="text-dar d-flex align-items-center">
|
|
|
<span>Is time specific</span>
|
|
|
- <input type="checkbox" name="isTimeSpecific" class="my-0 ml-1">
|
|
|
+ <input type="checkbox" name="isTimeSpecific" class="my-0 ml-1"
|
|
|
+ onchange="enableTimeSpecificFields(this.checked, '', 'next-appt-time-range')">
|
|
|
</label>
|
|
|
</div>
|
|
|
|
|
|
<div class="mb-2">
|
|
|
<label class="text-secondary text-sm">Time</label>
|
|
|
- <input type="time" name="time" class="form-control form-control-sm">
|
|
|
+ <input type="time" name="time" class="form-control form-control-sm next-appt-time-range" disabled>
|
|
|
</div>
|
|
|
<div>
|
|
|
<button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|