37 lines
811 B
Handlebars
37 lines
811 B
Handlebars
{{#if measurementsPresent}}
|
|
<table class="flakes-table">
|
|
<colgroup>
|
|
{{#if canEdit}}
|
|
<col span="1" style="width:40%">
|
|
<col span="1" style="width:20%">
|
|
<col span="1" style="width:30%">
|
|
<col span="1" style="width:10%">
|
|
{{else}}
|
|
<col span="1" style="width:40%">
|
|
<col span="1" style="width:30%">
|
|
<col span="1" style="width:30%">
|
|
{{/if}}
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>Characteristic</th>
|
|
<th>Value</th>
|
|
<th>Notes</th>
|
|
{{#if canEdit}}
|
|
<th>Edit</th>
|
|
{{/if}}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each measurementsTable as |row|}}
|
|
{{
|
|
protected/strains/show/measurements-table-row
|
|
row=row
|
|
canEdit=canEdit
|
|
}}
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
{{else}}
|
|
No measurements on record.
|
|
{{/if}}
|