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="photo-instructions evaluation-page" scroll-indicator ng-swipe-left="swipeLeft()" ng-swipe-disable-mouse>
<div class="photo-instructions evaluation-content">
<p>Scroll down and ensure this summary of your responses is accurate before proceeding. Then you can take photos.</p>
<h3 class="summary-header">Skin since last evaluation:</h3>
<p class="summary-text">{{evaluation.skinStatus}}<span ng-if="evaluation.skinStatusComment" class="review-comments"> - {{evaluation.skinStatusComment}}</span></p>

<div ng-if="!hasMeds">
<h3 class="summary-header">Type of treatment:</h3>
<p class="summary-text">None</p>
</div>

<div ng-if="hasMeds">
<div ng-repeat="medType in medTypes">
<h3 class="summary-header">{{toTitleCase(medType)}} Medications:</h3>
<p ng-repeat="med in getMedsByType(medType)" class="summary-text">
{{med.name}} - {{med.type === 'TOPICAL' ? 'Location' : 'Dose'}}: {{med.dose}};
Frequency: {{med.frequency !== 'other' ? med.frequency : med.frequencyOther}};
Unit: {{med.timeUnit !== 'other' ? med.timeUnit : med.timeUnitOther}};
Doses Missed: {{med.missedDoses}}
</p>
</div>

<div ng-if="hasOtherMeds">
<h3 class="summary-header">Other Medications:</h3>
<p class="summary-text">{{evaluation.otherMedication}}</p>
</div>
</div>

<h3 class="summary-header">Additional Comments:</h3>
<p class="summary-text">{{hasComments}}<span class="review-comments">{{comments}}</span></p>

<p>Page back through the questions if you need to update your responses</p>

<div class="full-button-wrapper">
<button class="btn btn-default submit-btn" ng-click="accept()">Accept</button>
</div>
</div>
</div>
<progress-bar previous="previous()" hide-next="true" />