aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorzsloan2022-02-22 22:11:10 +0000
committerzsloan2022-02-26 00:24:10 -0600
commit73a0ad695f4c7ad9d4a313b9bb9231dcaab5fcb7 (patch)
tree6f51ec5a608db43ef801733bb3e828a2795ed141 /wqflask
parentd7d88b138fa4b418ba8590410999fdff8c4eed2b (diff)
downloadgenenetwork2-73a0ad695f4c7ad9d4a313b9bb9231dcaab5fcb7.tar.gz
Add container div
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/templates/partial_correlations.html19
1 files changed, 14 insertions, 5 deletions
diff --git a/wqflask/wqflask/templates/partial_correlations.html b/wqflask/wqflask/templates/partial_correlations.html
index ad1c674a..0cf09afc 100644
--- a/wqflask/wqflask/templates/partial_correlations.html
+++ b/wqflask/wqflask/templates/partial_correlations.html
@@ -10,6 +10,7 @@
{%endblock%}
{%block content%}
+<div class="container">
<form id="partial-correlations-form"
method="POST"
action="{{url_for('partial_correlations')}}">
@@ -210,7 +211,8 @@
<table id="part-corr-results-publish" class="table-hover table-striped cell-border" style="display:none; float: left;">
<thead>
<tr>
- <th>_</th>
+ <th></th>
+ <th>Index</th>
<th>Record</th>
<th>Phenotype</th>
<th>Authors</th>
@@ -226,7 +228,8 @@
<tbody>
<tr class="template-publish-results-row">
- <td data-column-heading="_"></td>
+ <td></td>
+ <td data-column-heading="Index"></td>
<td data-column-heading="Record"></td>
<td data-column-heading="Phenotype"></td>
<td data-column-heading="Authors"></td>
@@ -249,7 +252,8 @@
<table id="part-corr-results-geno" style="display:none;">
<thead>
<tr>
- <th>_</th>
+ <th></th>
+ <th>Index</th>
<th>Locus</th>
<th>Chr</th>
<th>Megabase</th>
@@ -264,7 +268,8 @@
<tbody>
<tr class="template-geno-results-row">
- <td data-column-heading="_"></td>
+ <td></td>
+ <td data-column-heading="Index"></td>
<td data-column-heading="Locus"></td>
<td data-column-heading="Chr"></td>
<td data-column-heading="Megabase"></td>
@@ -286,7 +291,8 @@
<table id="part-corr-results-probeset" style="display:none;">
<thead>
<tr>
- <th>_</th>
+ <th></th>
+ <th>Index</th>
<th>Record</th>
<th>Gene ID</th>
<th>Homologene ID</th>
@@ -309,6 +315,8 @@
<tbody>
<tr class="template-probeset-results-row">
+ <td></td>
+ <td data-column-heading="Index"></td>
<td data-column-heading="_"></td>
<td data-column-heading="Record"></td>
<td data-column-heading="Gene ID"></td>
@@ -334,6 +342,7 @@
<div id="part-corr-error">
</div>
</div>
+</div>
{%endblock%}
{%block js%}