Skip to content

Commit

Permalink
Improve the formatting of the expression table
Browse files Browse the repository at this point in the history
  • Loading branch information
Redmar-van-den-Berg committed Dec 18, 2024
1 parent 97d8138 commit 515d241
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions report/templates/contents_overview.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
<div class="table-title">
<p>Table 9 | Gene expression</p>
</div>
<table class="table-wide" style="margin-bottom: 2em; width: 30%;" id="gene-expression">
<table class="table-wide" style="margin-bottom: 2em; width: 50%;" id="gene-expression">
<thead>
<tr>
<th>Gene</th>
Expand All @@ -123,11 +123,11 @@
{% for gene, results in gene_expression.items() %}
<tr>
<td>{{ gene }}</td>
<td>{{ results.raw }}</td>
{% if results.normalized %}
<td>{{ results.normalized | round(2) }}</td>
<td class="text-right">{{ results.raw }}</td>
{% if results.normalized is none %}
<td class="text-right">None</td>
{% else %}
<td>None</td>
<td class="text-right">{{ results.normalized | round(2) }}</td>
{% endif %}
</tr>
{% endfor %}
Expand Down

0 comments on commit 515d241

Please sign in to comment.