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
31 lines (31 sloc) 1.1 KB
<div class="table-responsive">
<table class="table table-striped stupidtable">
<thead>
<tr>
<th data-sort="string-ins">Label</th>
<th data-sort="string-ins">Name</th>
<th data-sort="string-ins">Description</th>
<th data-sort="int">Sequence count</th>
<th data-sort="int">Species count</th>
</tr>
</thead>
<tbody>
{% for go_id, go_stat in go_stats.items() %}
<tr>
<td><a href="{{ url_for('go.go_view', go_id=go_id) }}">{{ go_stat.go.label }}</a></td>
<td>{{ go_stat.go.name }}</td>
<td>{{ go_stat.go.description|truncate(80) }}</td>
<td>{{ go_stat.sequence_count }}</td>
<td>{{ go_stat.species_count }}</td>
</tr>
{% else %}
<tr>
<td>
<p>No associated GO terms for this item in the database.</p>
</td>
<td></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>