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/pods/species/index/template.hbs
Matthew Dillon 33e7b92a8c Component cleanup (dropping sortable table)
+ remove `sortable-table`
+ remove `sortable-table-header`
+ remove `characteristic-index-row`
+ remove `species-index-row`
+ remove `strain-index-row`
2015-06-29 07:19:20 -08:00

34 lines
749 B
Handlebars

<h2>{{genus-name}} Species</h2>
<h3>Total species: {{species.length}}</h3>
{{add-button label="Add Species" link="species.new"}}
<table class="flakes-table">
<thead>
<tr>
<th>Name</th>
<th>Strains</th>
</tr>
</thead>
<tbody>
{{#each sortedSpecies as |row|}}
<tr>
<td>
<em>
{{#link-to 'species.show' row}}
{{row.speciesName}}
{{/link-to}}
</em>
</td>
<td>
{{#each row.strains as |strain index|}}
{{if index ","}}
{{#link-to 'strains.show' strain.id}}
{{{strain.strainNameMU}}}
{{/link-to}}
{{/each}}
</td>
</tr>
{{/each}}
</tbody>
</table>