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/strains/index.hbs
2015-03-18 16:20:22 -08:00

19 lines
360 B
Handlebars

<h2>Strains</h2>
<h3>Total strains: {{model.length}}</h3>
<table class="flakes-table">
<thead>
<tr>
<th>Name</th>
<th>Measurements</th>
</tr>
</thead>
<tbody>
{{#each strain in model}}
<tr>
<td>{{link-to strain.strainName 'measurements' strain}}</td>
<td></td>
</tr>
{{/each}}
</tbody>
</table>