54 lines
1.2 KiB
Handlebars
54 lines
1.2 KiB
Handlebars
{{#if isEditing}}
|
|
<td></td>
|
|
<td>
|
|
{{
|
|
select-2
|
|
multiple=false
|
|
content=allCharacteristics
|
|
value=characteristic
|
|
optionLabelPath="characteristicName"
|
|
}}
|
|
</td>
|
|
<td>
|
|
{{one-way-input type="text" class="measurement-value" value=value update=(action "valueDidChange")}}
|
|
</td>
|
|
<td>
|
|
{{one-way-input type="text" class="measurement-notes" value=notes update=(action "notesDidChange")}}
|
|
</td>
|
|
{{#if canEdit}}
|
|
<td>
|
|
{{#if isDirty}}
|
|
<button class="button-green smaller" {{action 'save'}}>
|
|
Save
|
|
</button>
|
|
{{else}}
|
|
<button class="button-gray smaller" {{action 'save'}}>
|
|
Cancel
|
|
</button>
|
|
{{/if}}
|
|
</td>
|
|
{{/if}}
|
|
{{else}}
|
|
<td>
|
|
{{{measurement.characteristic.characteristicTypeName}}}
|
|
</td>
|
|
<td>
|
|
{{#link-to 'protected.characteristics.show' measurement.characteristic.id}}
|
|
{{{measurement.characteristic.characteristicName}}}
|
|
{{/link-to}}
|
|
</td>
|
|
<td>
|
|
{{measurement.value}}
|
|
</td>
|
|
<td>
|
|
{{measurement.notes}}
|
|
</td>
|
|
{{#if canEdit}}
|
|
<td>
|
|
<button class="button-gray smaller" {{action 'edit'}}>
|
|
Edit
|
|
</button>
|
|
{{delete-button delete=(action 'delete')}}
|
|
</td>
|
|
{{/if}}
|
|
{{/if}}
|