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

Commit

Permalink
Fixed localization on family information.
Browse files Browse the repository at this point in the history
Fixes #869
  • Loading branch information
jkleinsc committed Dec 14, 2016
1 parent b4946f3 commit 8dcc622
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions app/patients/socialwork/family-info/template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@
updateButtonText=updateButtonText }}
{{#em-form model=model submitButton=false }}
<div class="row">
{{em-input label=(t labels.name) property="name" class="required col-xs-6"}}
{{em-input label=(t labels.age) property="age" class="col-xs-3"}}
{{em-input label=(t 'labels.name') property="name" class="required col-xs-6"}}
{{em-input label=(t 'labels.age') property="age" class="col-xs-3"}}
</div>
<div class="row">
{{em-input label=(t labels.civil_status) property="civilStatus" class="col-xs-6"}}
{{em-input label=(t labels.relationship) property="relationship" class="col-xs-6"}}
{{em-input label=(t 'patients.labels.civilStatus') property="civilStatus" class="col-xs-6"}}
{{em-input label=(t 'patients.labels.relationship') property="relationship" class="col-xs-6"}}
</div>
<div class="row">
{{em-input label=(t labels.education) property="education" class="col-xs-6"}}
{{em-input label=(t labels.occupation)property="occupation" class="col-xs-6"}}
{{em-input label=(t 'patients.labels.education') property="education" class="col-xs-6"}}
{{em-input label=(t 'patients.labels.occupation')property="occupation" class="col-xs-6"}}
</div>
<div class="row">
{{number-input label=(t labels.income) property="income" class="col-xs-6"}}
{{em-input label=(t labels.insurance) property="insurance" class="col-xs-6"}}
{{number-input label=(t 'patients.labels.income') property="income" class="col-xs-6"}}
{{em-input label=(t 'patients.labels.insurance') property="insurance" class="col-xs-6"}}
</div>
{{/em-form}}
{{/modal-dialog}}

0 comments on commit 8dcc622

Please sign in to comment.