aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorzsloan2022-02-22 22:02:52 +0000
committerzsloan2022-02-26 00:24:10 -0600
commit140707eab56f8878d0b149e6fe92819fe5054d43 (patch)
tree6978fb2107d285e0b206137ada3295a343822fcd /wqflask
parentb1629deb7822b165dbb42de4662e9ab968170e95 (diff)
downloadgenenetwork2-140707eab56f8878d0b149e6fe92819fe5054d43.tar.gz
Include DataTables imports and necessary CSS
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/templates/partial_correlations.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/partial_correlations.html b/wqflask/wqflask/templates/partial_correlations.html
index 4be4890e..ad1c674a 100644
--- a/wqflask/wqflask/templates/partial_correlations.html
+++ b/wqflask/wqflask/templates/partial_correlations.html
@@ -4,6 +4,9 @@
{%block css%}
<link rel="stylesheet" type="text/css" href="/static/new/css/partial_correlations.css" />
+<link rel="stylesheet" type="text/css" href="{{ url_for('css', filename='DataTables/css/jquery.dataTables.css') }}" />
+<link rel="stylesheet" type="text/css" href="/static/new/css/trait_list.css" />
+<link rel="stylesheet" type="text/css" href="/static/new/css/show_trait.css" />
{%endblock%}
{%block content%}
@@ -204,7 +207,7 @@
<img src="/static/gif/waitAnima2.gif">
</span>
<div id="part-corr-success">
- <table id="part-corr-results-publish" style="display:none;">
+ <table id="part-corr-results-publish" class="table-hover table-striped cell-border" style="display:none; float: left;">
<thead>
<tr>
<th>_</th>
@@ -337,5 +340,7 @@
{%if step == "select-corr-method":%}
<script type="text/javascript"
src="/static/new/javascript/partial_correlations.js"></script>
+<script language="javascript" type="text/javascript"
+ src="{{ url_for('js', filename='DataTables/js/jquery.dataTables.min.js') }}"></script>
{%endif%}
{%endblock%}