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

Commit

Permalink
Display Vitals Taken By on visit page
Browse files Browse the repository at this point in the history
Fixes #1016
  • Loading branch information
adeolabadmus authored and jkleinsc committed Mar 29, 2017
1 parent 2ca34da commit 2ea2fe2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/locales/en/translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,7 @@ export default {
prescriber: 'Prescriber',
quantity: 'Quantity',
requestedOn: 'Requested On',
takenBy: 'Taken By',
date: 'Date',
dateOfBirth: 'Date of Birth',
dateOfBirthShort: 'DoB',
Expand Down
2 changes: 2 additions & 0 deletions app/visits/edit/template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@
<div class="panel-body">
<table class="table">
<tr class="table-header">
<th>{{t "labels.takenBy"}}</th>
<th>{{t "labels.date"}}</th>
<th>{{t "vitals.labels.temperature"}}</th>
<th>{{t "vitals.labels.weight"}}</th>
Expand All @@ -226,6 +227,7 @@
</tr>
{{#each model.vitals as |vital|}}
<tr>
<td>{{vital.modifiedBy}}</td>
<td>{{date-format vital.dateRecorded format="l h:mm A"}}</td>
<td>{{vital.temperature}}</td>
<td>{{vital.weight}}</td>
Expand Down

0 comments on commit 2ea2fe2

Please sign in to comment.