blob: 5bbb3d6d3374a29412e77ba48c8f5e87370e759c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends "index_page.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="/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>
<p style="background-color: black; color: green;">
{%for line in error["stderr-output"]%}
{{line}}<br />
{%endfor%}
</p>
</div>
{%endblock%}
|