forked from QMENTA/qmenta-sdk-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreport_template.html
71 lines (62 loc) · 1.55 KB
/
report_template.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
<html>
<head>
<meta name="pdfkit-page-size" content="Legal" />
<meta name="pdfkit-orientation" content="Portrait" />
<style type="text/css">
.title_1 {
font-size: 18px;
font-weight: bold;
margin: 10px 0px;
}
.disclaimer {
font-size: 22px;
font-weight: bold;
position: absolute;
top: 8px;
color: #AAAAAA;
}
.subject_data_container {
width: 100%;
border-top: solid 1px #999;
border-bottom: solid 1px #999;
padding: 10px 0px;
font-size: 16px;
}
.comment {
padding: 5px;
font-size: 12px;
}
.page_break {
page-break-before: always;
}
</style>
</head>
<body>
<div
style="width: 100%; font-size: 12px; text-align: right; padding: 5px">
Version {{data_report["version"]}}</div>
<table style='width: 100%; height: auto; margin: 20px 0px 40px 0px; '>
<tr>
<td rowspan="2"><img style='width: 360px; height: auto'
src="{{data_report['logo_main']}}" /></td>
</tr>
<tr>
<td style='text-align: right'>
Carrer de Roger de Llúria 46, Pral. 1ª<br />
08009 Barcelona<br />
Spain
</td>
</tr>
</table>
<div style="font-size: 12px; text-align: right; padding: 5px">Created:
{{data_report["this_moment"]}}</div>
<div class="title_1">Patient Information</div>
<div class="subject_data_container">
Subject ID: <b>{{data_report["ss"]}}</b> |
Session ID: <b>{{data_report["ssid"]}}</b>
</div>
<div class="title_1">Analysis Results</div>
<div class="comment">Analysis Results</div>
<div class="disclaimer">This report is not meant for any clinical usage.</div>
</body>
</html>