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

Commit

Permalink
Added RequestedBy to Images
Browse files Browse the repository at this point in the history
  • Loading branch information
clettenberg committed Apr 29, 2016
1 parent 1cc5c54 commit d204ac5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/imaging/completed/template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<tr class="table-header">
<th>{{t 'labels.date_requested'}}</th>
<th>{{t 'labels.date_completed'}}</th>
<th>{{t 'labels.requested_by'}}</th>
<th>{{t 'labels.patient'}}</th>
<th>{{t 'labels.imaging_type'}}</th>
<th>{{t 'labels.results'}}</th>
Expand All @@ -13,6 +14,7 @@
<tr>
<td>{{date-format imaging.requestedDate}}</td>
<td>{{date-format imaging.imagingDate}}</td>
<td>{{imaging.requestedBy}}</td>
<td>{{imaging.patient.displayName}}</td>
<td>{{imaging.imagingType.name}}</td>
<td>{{imaging.result}}</td>
Expand Down
2 changes: 2 additions & 0 deletions app/imaging/index/template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<table class="table">
<tr class="table-header">
<th>{{t 'labels.date_requested'}}</th>
<th>{{t 'labels.requested_by'}}</th>
<th>{{t 'labels.patient'}}</th>
<th>{{t 'labels.imaging_type'}}</th>
<th>{{t 'labels.notes'}}</th>
Expand All @@ -13,6 +14,7 @@
{{#each model as |imaging|}}
<tr {{action 'editItem' imaging }} class="clickable">
<td>{{date-format imaging.requestedDate}}</td>
<td>{{imaging.requestedBy}}</td>
<td>{{imaging.patient.displayName}}</td>
<td>{{imaging.imagingType.name}}</td>
<td>{{imaging.notes}}</td>
Expand Down

0 comments on commit d204ac5

Please sign in to comment.