diff options
-rw-r--r-- | wqflask/wqflask/templates/correlation_error_page.html | 18 |
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%} |