Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

<div class="primary-header">
<h2 primary-focus>Direct Scheduling</h2>

<!-- top buttons -->
<div class="top-btn">
<button id="top-reset-btn" type="button" class="btn" ng-click="reset()">Reset</button>
<button id="top-save-btn" type="button" class="btn" ng-click="save($event)">Save</button>
</div>
</div>
<div class="manage-settings-content">
<span required-field is-required="true" class="pull-right">required field</span>
<h3 id="direct-scheduling-settings-heading">
<span id="direct-scheduling-settings-institution-label">{{institution}}</span>
<span>Direct Scheduling Settings</span>
</h3>
<p>For the care types listed below, provide the direct scheduling settings supported by this location.</p>

<form name="directSchedulingForm" unsaved-warning-form novalidate="novalidate" validation-summary>
<h4 id="clinic-profile-based-on-types-of-care-heading" class="table-heading" tabindex="0">Clinic Profile Based Types of Care</h4>

<!-- table -->
<div class="list-table page-table page">
<div class="header">
<div>
<span class="table-header-separator" tabindex="0">
<span>Type of Care<br>(Primary/Secondary Stop Code)</span>
</span>
<span class="table-header-separator" tabindex="0">
<span>Supported at this Facility?</span>
</span>
<span class="table-header-separator" tabindex="0">
<span required-field is-required="true"><span class="sr-only">is required</span>Last seen within (Months)</span>
</span>
</div>
</div>
<ul>
<li ng-repeat="directScheduling in directBooking.coreSettings | orderBy:'typeOfCare' | movePrimaryCareToTop">
<span class="type-of-care-cell"> <!-- type of care column -->
<span>
<span class="sr-only">Type of Care</span>
<span class="cell-content">{{directScheduling.typeOfCare}}<br>
<span class="sr-only">(Primary/Secondary Stop Code)</span>
<span class="cell-stop-codes" ng-repeat="stopCode in directScheduling.stopCodes">{{$first ? '(' : ''}}{{stopCode|formatStopCodes}}{{!$last ? ',&nbsp;' : ')'}}</span>
</span>
</span>
</span>
<span> <!-- supported at this facility column -->
<span>
<label for="{{formatter.toDashCase(directScheduling.typeOfCare)}}-direct-scheduling-supported" class="sr-only">
Supported at this Facility? {{directScheduling.typeOfCare}}
<span>stop codes - <span ng-repeat="stopCode in directScheduling.stopCodes">{{$first ? '(' : ''}}{{stopCode|formatStopCodes}}{{!$last ? ',&nbsp;' : ')'}}</span></span>
</label>
<select formatted-empty-string-to-null-value
id="{{formatter.toDashCase(directScheduling.typeOfCare)}}-direct-scheduling-supported"
name="{{formatter.toDashCase(directScheduling.typeOfCare)}}-direct-scheduling-supported"
class="form-control"
ng-model="directScheduling.patientHistoryRequired"
ng-options="isSupported.value as isSupported.response for isSupported in getSupportedMenuOptions(directScheduling)">
<option value="">No</option>
</select>
</span>
</span>
<span> <!-- last seen within months column -->
<span ng-if="directScheduling.patientHistoryRequired === 'Yes'">
<label required-field is-required="true" for="{{formatter.toDashCase(directScheduling.typeOfCare)}}-direct-scheduling-last-seen" class="sr-only">
Last Seen Within (Months) {{directScheduling.typeOfCare}}
<span>stop codes - <span ng-repeat="stopCode in directScheduling.stopCodes">{{$first ? '(' : ''}}{{stopCode|formatStopCodes}}{{!$last ? ',&nbsp;' : ')'}}</span></span>
</label>
<select required required-non-zero-value
id="{{formatter.toDashCase(directScheduling.typeOfCare)}}-direct-scheduling-last-seen"
name="{{formatter.toDashCase(directScheduling.typeOfCare)}}-direct-scheduling-last-seen"
class="form-control"
ng-model="directScheduling.patientHistoryDuration"
ng-options="lastSeen.value as lastSeen.days for lastSeen in lastSeenMenu">
<option value="">Select</option>
</select>
</span>
</span>
</li>
</ul>
</div>

<!-- bottom buttons -->
<div class="bottom-btn">
<button id="bottom-reset-btn" type="button" class="btn btn-default" ng-click="reset()">Reset</button>
<button id="bottom-save-btn" type="button" class="btn btn-primary" ng-click="save($event)">Save</button>
</div>
</form>
</div>