-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.html
110 lines (100 loc) · 3.28 KB
/
output.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<title>Matching Percentile Output</title>
<style>
div{
background-color: lightblue;
margin: 0px 65px 0px 65px;
align-content: center;
}
body{
font-family: Arial , Helvetica, sans-serif;
background-color: rgb(180, 146, 151);
}
hr {
border: 1.3px solid #280606;
background-color: #280606;
}
h1{
color: rgb(38, 9, 53);
}
h6{
font-style: italic;
color: rgb(96, 61, 114);
}
h3{
margin: 0 20% 20px 20%;
}
/* , .dataframe th, .dataframe td */
table.dataframe {
border:none;
width: 65%;
border-bottom: 1px solid #C8C8C8;
border-collapse:collapse;
text-align:center;
padding: 10px;
margin: 0 20% 40px 20%;
/* margin-left: 50px;
margin-right: 50px;
margin-bottom: 40px; */
font-size: 0.9em;
}
table
{
text-align: center;
align-items: center;
border-bottom: 1px solid #C8C8C8;
border-collapse:collapse;
}
.dataframe th{
text-align: center;
align-items: center;
background-color: rgb(224, 210, 162);
}
.dataframe td
{
border-bottom: 1px solid #C8C8C8;
border-collapse:collapse;
background-color: rgb(225, 219, 199);
}
.dataframe Input th{
background-color: rgb(104, 126, 237);
}
.dataframe Input td{
background-color: rgb(134, 151, 239);
}
tr:nth-child(odd) { background-color:#eee; }
tr:nth-child(even) { background-color:#fff; }
</style>
</head>
<body>
<div >
<h1 align="center">Probabilistics Person Match</h1>
<!-- <h6 align="center">Please fill up the below form to generate Matching Percentile Results</h6> -->
<hr>
</div>
<div>
<p align="center">
{% for table in tables %}
<h3 align="left">{{titles[loop.index]}}</h3>
{% if titles[loop.index]=="Input" %}
{{ table|safe }}
{% else %}
{{ table|safe }}
{% endif %}
{% endfor %}
</p>
</div>
<div>
{{ data }}
</div>
<!-- <table>
<tr>
{% for column in tables.columns %}
<th>{{ column }}</th>
{% endfor %}
</tr>
</table> -->
</body>
</html>