27 lines
661 B
Handlebars
27 lines
661 B
Handlebars
<div class="overflow-div">
|
|
<table class="flakes-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Characteristic</th>
|
|
{{#each strains as |strain|}}
|
|
<th>
|
|
{{#link-to 'protected.strains.show' strain.id classBinding="data.typeStrain:type-strain"}}
|
|
{{strain.fullNameMU}}
|
|
{{/link-to}}
|
|
</th>
|
|
{{/each}}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each model as |row|}}
|
|
<tr>
|
|
{{#each row key="@index" as |col|}}
|
|
<td>{{col}}</td>
|
|
{{/each}}
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
<hr>
|
|
<a href="{{csvLink}}" download>Download as CSV</a>
|
|
</div>
|