aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-10-12 12:49:35 +0300
committerFrederick Muriuki Muriithi2022-10-12 12:50:07 +0300
commit931fdf8795db0c68daba29dbaa25b8e52f86e7f8 (patch)
tree21b4afe54592aa8f15c5dd3d1fb18d1c9068e9eb
parent1d37d4514e2f60e16be23aa70c03948158e7b383 (diff)
downloadgenenetwork2-931fdf8795db0c68daba29dbaa25b8e52f86e7f8.tar.gz
Commit missing html page.
-rw-r--r--wqflask/wqflask/templates/correlation_error_page.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/wqflask/wqflask/templates/correlation_error_page.html b/wqflask/wqflask/templates/correlation_error_page.html
new file mode 100644
index 00000000..9197e4a9
--- /dev/null
+++ b/wqflask/wqflask/templates/correlation_error_page.html
@@ -0,0 +1,18 @@
+{%extends "base.html"%}
+{%block title%}Correlation Results{%endblock%}
+
+{%block css%}
+<link rel="stylesheet" type="text/css" href="{{ url_for('css', filename='DataTables/css/jquery.dataTables.css') }}" />
+<link rel="stylesheet" type="text/css" href="{{ url_for('js', filename='DataTablesExtensions/buttonsBootstrap/css/buttons.bootstrap.css') }}" />
+<link rel="stylesheet" type="text/css" href="{{ url_for('js', filename='DataTablesExtensions/buttonStyles/css/buttons.dataTables.min.css') }}" />
+<link rel="stylesheet" type="text/css" href="{{ url_for('css', filename='fontawesome/css/all.min.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%}
+<div class="container">
+ <h3 style="color: red;">{{error["error-type"]}}</h3>
+ <p>{{error["error-message"]}}</p>
+</div>
+{%endblock%}