Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<span class="encounter-name title encounter-span">
<i class="{{ section.icon }}"></i> {{ section.label | translate }}
<i class="icon-exclamation-sign highlight" ng-show="doesNotHaveExistingObs && !hideIncompleteAlert"></i>
</span> <!-- encounter-type class added for smoke tests -->
<span class="obs-span">
<span ng-repeat="obs in encounter.obs | byConcept:Concepts.adverseEvent">
{{ obs | obs:"value" }}{{ \$last ? "" : "," }}
</span>
</span>
<span ng-show="showEncounterDetails" ng-include="'templates/showEncounterDetails.page'" />
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<div class="header" id="{{section.id}}">
<span class="ninety-percent" ng-show="canExpand()==null" ng-include="'templates/sections/pmtctHistorySectionHeading.page'"></span>
<span class="selectable ninety-percent" ng-show="canExpand()" ng-click="expand()" ng-include="'templates/sections/pmtctHistorySectionHeading.page'"></span>
<span class="selectable ninety-percent" ng-show="canContract()" ng-click="contract()" ng-include="'templates/sections/pmtctHistorySectionHeading.page'"></span>
<span class="overall-actions" ng-include="'templates/sections/defaultSectionActions.page'"></span>
</div>
3 changes: 3 additions & 0 deletions omod/src/main/webapp/resources/scripts/visit/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,9 @@ angular.module('constants', [])
},
whoHIVStages: {
uuid: "3cebd8b8-26fe-102b-80cb-0017a47871b2"
},
adverseEvent: {
uuid: "3cd96052-26fe-102b-80cb-0017a47871b2"
}
})
.value('PrimaryCareExamConcepts', {
Expand Down