16 lines
543 B
Handlebars
16 lines
543 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 controller as |measurement|}}
|
|
{{measurements/measurement-row measurement=measurement}}
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|