Skip to content

Commit

Permalink
Better layout table
Browse files Browse the repository at this point in the history
  • Loading branch information
proost committed Feb 15, 2017
1 parent 8bab94c commit e52da5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planet/templates/pagination/cluster_probes.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<tbody>
{% for sequence_association in sequence_associations %}
<tr>
<td><a href="{{ url_for('expression_profile.expression_profile_find', probe=sequence_association.probe, species_id=species_id) }}">{{ sequence_association.probe }}</a></td>
{% if sequence_association.sequence %}
<td><a href="{{ url_for('sequence.sequence_view', sequence_id=sequence_association.sequence.id) }}">{{ sequence_association.sequence.name }}</a></td>
<td>{% if sequence_association.sequence.aliases %}{{ sequence_association.sequence.aliases }}{% else %}<span class="text-muted">No alias</span>{% endif %}</td>
Expand All @@ -12,6 +11,7 @@
<td><span class="text-muted">No alias</span></td>
{% endif %}
<td>{% if sequence_association.sequence.description %}{{ sequence_association.sequence.description|truncate(60) }}{% else %}<em class="text-muted">No description available</em>{% endif %}</td>
<td><a href="{{ url_for('expression_profile.expression_profile_find', probe=sequence_association.probe, species_id=species_id) }}">View profile</a></td>
</tr>
{% endfor %}
</tbody>
Expand Down

0 comments on commit e52da5e

Please sign in to comment.