Skip to content
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.

MUMPFL-125 : Admin wants phone numbers #39

Merged
merged 2 commits into from
Aug 12, 2015
Merged
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
4 changes: 2 additions & 2 deletions my-profile-webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
<artifactId>my-profile-integration-impl</artifactId>
<version>${project.version}</version>
</dependency>
<!-- <dependency>
<!--<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>my-profile-local-contact-impl</artifactId>
<version>${project.version}</version>
</dependency> -->
</dependency>-->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>my-profile-middleware-impl</artifactId>
Expand Down
12 changes: 12 additions & 0 deletions my-profile-webapp/src/main/webapp/my-app/lec/partials/user.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@
</div>
</div>

<div class="row" ng-show="showingDetails">
<div class='col-sm-offset-2 col-sm-8'>
<div class='info-card'>
<p><strong>Local Phone Numbers</strong></p>
<div ng-repeat="phone in people.contactInformation.local.phoneNumbers">{{phone.type}} : {{phone.value}}</div>
<div ng-if='people.contactInformation.local.phoneNumbers && people.contactInformation.local.phoneNumbers.length === 0'>
No local phone numbers available for {{people.firstName}} {{people.middleName}} {{people.lastName}}
</div>
</div>
</div>
</div>

<div class="row" ng-show="showingDetails">
<div ng-class="{'col-sm-offset-2' : (people.contactInformation.emergency.length === 1),
'col-sm-8' : (people.contactInformation.emergency.length === 1),
Expand Down