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/templates/measurements/index.hbs
2015-03-21 11:42:29 -08:00

16 lines
541 B
Handlebars

<table class="flakes-table">
<thead>
<tr>
<th {{action "setSortBy" "characteristicName"}}>Characteristic</th>
<th {{action "setSortBy" "computedType"}}>Measurement Type</th>
<th {{action "setSortBy" "computedValue"}}>Measurement</th>
<th {{action "setSortBy" "notes"}}>Notes</th>
<th {{action "setSortBy" "testMethod"}}>Test Method</th>
</tr>
</thead>
<tbody>
{{#each measurement in controller}}
{{measurements/measurement-row measurement=measurement}}
{{/each}}
</tbody>
</table>