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-13 14:24:26 -07:00

35 lines
863 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 |row|}}
<tr>
<td>
{{#link-to 'protected.strains.show' row.strain.id}}
{{strain-name strain=row.strain}}
{{/link-to}}
</td>
<td>
{{row.value}}
</td>
<td>
{{row.notes}}
</td>
</tr>
{{/each}}
</tbody>
</table>
{{else}}
No measurements on record.
{{/if}}