30 lines
631 B
Handlebars
30 lines
631 B
Handlebars
{{#if measurementsPresent}}
|
|
<table class="flakes-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Characteristic</th>
|
|
<th>Value</th>
|
|
<th>Notes</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each measurementsTable as |row|}}
|
|
<tr>
|
|
<td>
|
|
{{#link-to 'protected.characteristics.show' row.characteristic.id}}
|
|
{{{row.characteristic.characteristicName}}}
|
|
{{/link-to}}
|
|
</td>
|
|
<td>
|
|
{{row.measurement.value}}
|
|
</td>
|
|
<td>
|
|
{{row.measurement.notes}}
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
{{else}}
|
|
No measurements on record.
|
|
{{/if}}
|