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-19 13:12:29 -08:00

19 lines
388 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>{{strain.totalMeasurements}}</td>
</tr>
{{/each}}
</tbody>
</table>