aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzsloan2019-03-11 14:33:29 -0500
committerzsloan2019-03-11 14:33:29 -0500
commit2a8067312fb402f5cb9f4a10d32f829261a534d3 (patch)
tree0a5131479d3288efb1721aa304e11b32f7502532
parentd744591182c89e43c7251eec14a265d87c4db75e (diff)
downloadgenenetwork2-2a8067312fb402f5cb9f4a10d32f829261a534d3.tar.gz
Changed header style, because the jumbotrons previously used didn't look that good. Now it's just a simple header element.
-rw-r--r--wqflask/wqflask/templates/comparison_bar_chart.html5
-rw-r--r--wqflask/wqflask/templates/corr_scatterplot.html7
-rw-r--r--wqflask/wqflask/templates/correlation_matrix.html5
-rw-r--r--wqflask/wqflask/templates/geneweaver_page.html4
-rw-r--r--wqflask/wqflask/templates/heatmap.html5
-rw-r--r--wqflask/wqflask/templates/network_graph.html5
-rw-r--r--wqflask/wqflask/templates/snp_browser.html2
7 files changed, 15 insertions, 18 deletions
diff --git a/wqflask/wqflask/templates/comparison_bar_chart.html b/wqflask/wqflask/templates/comparison_bar_chart.html
index 033ff0a4..dc74ddb2 100644
--- a/wqflask/wqflask/templates/comparison_bar_chart.html
+++ b/wqflask/wqflask/templates/comparison_bar_chart.html
@@ -5,10 +5,9 @@
<link rel="stylesheet" type="text/css" href="/static/new/css/panelutil.css" />
{% endblock %}
{% block content %} <!-- Start of body -->
-
- {{ header("Comparison Bar Chart") }}
-
<div class="container">
+ <h1>Comparison Bar Chart</h1>
+ <hr style="height: 1px; background-color: #A9A9A9;">
<div>
<h3>
The following is a grouped bar chart with the sample values for each selected trait.
diff --git a/wqflask/wqflask/templates/corr_scatterplot.html b/wqflask/wqflask/templates/corr_scatterplot.html
index 8816f0b5..f60a7129 100644
--- a/wqflask/wqflask/templates/corr_scatterplot.html
+++ b/wqflask/wqflask/templates/corr_scatterplot.html
@@ -20,15 +20,16 @@
<input type="hidden" name="ranked_cofactor3_vals"></input>
<input type="hidden" name="selecting_which_cofactor"></input>
- <h2>Correlation Scatterplot</h2>
+ <h1>Correlation Scatterplot</h1>
+ <hr style="height: 1px; background-color: #A9A9A9;">
- <table class="table">
+ <table>
<tr>
<td style="vertical-align: middle;">Width <input class="chartupdatewh" id="width" type="text" value="800" style="width: 44px; height: 22px;"> px</td>
<td style="vertical-align: middle;">Height <input class="chartupdatewh" id="height" type="text" value="700" style="width: 44px; height: 22px;"> px</td>
</tr>
</table>
- <hr>
+ <hr style="height: 1px; background-color: #A9A9A9;">
{% if collections_exist == "True" %}
<div>
<div style="margin-bottom: 10px;">
diff --git a/wqflask/wqflask/templates/correlation_matrix.html b/wqflask/wqflask/templates/correlation_matrix.html
index e4fd3136..8698b710 100644
--- a/wqflask/wqflask/templates/correlation_matrix.html
+++ b/wqflask/wqflask/templates/correlation_matrix.html
@@ -6,14 +6,13 @@
<link rel="stylesheet" type="text/css" href="/static/new/css/d3-tip.min.css" />
{% endblock %}
{% block content %}
-
- {{ header("Correlation Matrix") }}
<div class="container">
+<h1>Correlation Matrix</h1>
+<hr style="height: 1px; background-color: #A9A9A9;">
{% if lowest_overlap < 8 %}
<div style="margin: 20px;" >Caution: This matrix of correlations contains some cells with small sample sizes of fewer than 8.</div>
{% endif %}
-
<table class="matrix" border="1" cellpadding="5" cellspacing="1" width="80%">
<tbody>
<tr>
diff --git a/wqflask/wqflask/templates/geneweaver_page.html b/wqflask/wqflask/templates/geneweaver_page.html
index 91fca85b..7687cb6a 100644
--- a/wqflask/wqflask/templates/geneweaver_page.html
+++ b/wqflask/wqflask/templates/geneweaver_page.html
@@ -2,9 +2,9 @@
{% block title %}{% if wrong_input == "True" %}WebGestalt Error{% else %}Opening WebGestalt{% endif %}{% endblock %}
{% block content %}
{% if wrong_input == "True" %}
- {{ header("Error") }}
-
<div class="container">
+ <h1>Error</h1>
+ <hr style="height: 1px; background-color: #A9A9A9;">
{% if chip_name == "mixed" %}
<h3>Sorry, the analysis was interrupted because your selections from GeneNetwork apparently include data from more than one array platform (i.e., Affymetrix U74A and M430 2.0). Most WebGestalt analyses assume that you are using a single array type and compute statistical values on the basis of that particular array. Please reselect traits from a signle platform and submit again.</h3>
{% elif chip_name == "not_microarray" %}
diff --git a/wqflask/wqflask/templates/heatmap.html b/wqflask/wqflask/templates/heatmap.html
index 3abac194..275ff1ba 100644
--- a/wqflask/wqflask/templates/heatmap.html
+++ b/wqflask/wqflask/templates/heatmap.html
@@ -5,10 +5,9 @@
<link rel="stylesheet" type="text/css" href="/static/new/css/panelutil.css" />
{% endblock %}
{% block content %} <!-- Start of body -->
-
- {{ header("Heatmap") }}
-
<div class="container">
+ <h1>Heatmap</h1>
+ <hr style="height: 1px; background-color: #A9A9A9;">
<div>
<h3>
The following heatmap is a work in progress. The heatmap for each trait runs horizontally (as opposed to vertically in GeneNetwork 1),
diff --git a/wqflask/wqflask/templates/network_graph.html b/wqflask/wqflask/templates/network_graph.html
index 57bd5492..6bee11e7 100644
--- a/wqflask/wqflask/templates/network_graph.html
+++ b/wqflask/wqflask/templates/network_graph.html
@@ -10,10 +10,9 @@
</style>
{% endblock %}
{% block content %}
-
- {{ header("Network Graph") }}
-
<div class="container-fluid">
+ <h1>Network Graph</h1>
+ <hr style="height: 1px; background-color: #A9A9A9;">
<div class="row" >
<div id="content">
<div id="secondaryContent" class="col-xs-3">
diff --git a/wqflask/wqflask/templates/snp_browser.html b/wqflask/wqflask/templates/snp_browser.html
index 45a14626..9c549ab5 100644
--- a/wqflask/wqflask/templates/snp_browser.html
+++ b/wqflask/wqflask/templates/snp_browser.html
@@ -9,7 +9,7 @@
<div class="container-fluid">
<h2>Variant Browser <a class="btn btn-primary" href="http://genenetwork.org/snpbrowser.html" role="button">Info</a></h2>
-
+ <hr style="height: 1px; background-color: #A9A9A9;">
<div class="container" style="border-style: double; position: relative; width: 950px; padding-top: 10px; padding-right: 40px;">
<form id="snp_browser_form" method="get" action="/snp_browser">
<input type="hidden" name="first_run" value="{{ first_run }}">