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-09-08 10:37:48 -07:00

30 lines
593 B
Handlebars

{{#if measurementsPresent}}
<table class="flakes-table">
<thead>
<tr>
<th>Strain</th>
<th>Value</th>
<th>Notes</th>
</tr>
</thead>
<tbody>
{{#each measurementsTable as |row|}}
<tr>
<td>
{{#link-to 'protected.strains.show' row.strain.id}}
{{{row.strain.strainNameMU}}}
{{/link-to}}
</td>
<td>
{{row.measurement.value}}
</td>
<td>
{{row.measurement.notes}}
</td>
</tr>
{{/each}}
</tbody>
</table>
{{else}}
No measurements on record.
{{/if}}