Skip to content
Permalink
24f692b648
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
27 lines (27 sloc) 937 Bytes
<div class="table-responsive">
<table class="table table-striped stupidtable">
<thead>
<tr>
<th data-sort="string-ins">Label</th>
<th data-sort="int">Sequence count</th>
<th data-sort="int">Species count</th>
</tr>
</thead>
<tbody>
{% for family_id, family_stat in family_stats.items() %}
<tr>
<td><a href="{{ url_for('family.family_view', family_id=family_id) }}">{{ family_stat.family.name }}</a></td>
<td>{{ family_stat.count }}</td>
<td>{{ family_stat.species_count }}</td>
</tr>
{% else %}
<tr>
<td>
<p>No associated families for this item in the database.</p>
</td>
<td></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>