This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/protected/characteristics/show/measurements-table/template.hbs
2015-11-17 16:10:33 -07:00

35 lines
952 B
Handlebars

{{#if measurementsPresent}}
{{#if paramsChanged}}
<button class="button-gray smaller" {{action 'resetSortParam'}}>
Reset sort
</button>
{{/if}}
<table class="flakes-table">
<thead>
<tr>
<th {{action "changeSortParam" "strain.strainName"}} class="click">Strain</th>
<th {{action "changeSortParam" "value"}} class="click">Value</th>
<th {{action "changeSortParam" "notes"}} class="click">Notes</th>
</tr>
</thead>
<tbody>
{{#each sortedMeasurements as |measurement|}}
<tr>
<td>
{{#link-to 'protected.strains.show' measurement.strain.id classBinding="measurement.strain.typeStrain:type-strain"}}
{{measurement.strain.fullNameMU}}
{{/link-to}}
</td>
<td>
{{measurement.value}}
</td>
<td>
{{measurement.notes}}
</td>
</tr>
{{/each}}
</tbody>
</table>
{{else}}
No measurements on record.
{{/if}}