-
Notifications
You must be signed in to change notification settings - Fork 0
/
print_report.html
87 lines (75 loc) · 2.09 KB
/
print_report.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Print Radiology Report</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap-responsive.css">
<link rel="stylesheet" href="css/iradiology_report_pg.css">
</head>
<body>
{header_print_report}
<div class="form-signin">
<img id="Image1" width="" height="" name="Image1" src="img/test2.fw.png" alt="ABUTH"><br>
<div class="pull-right">
<label class="label"><i>{patID}-{resultID}-{startDate}-{deptShort}</i></label>
</div>
<br>
<br>
<br>
<!-- BEGIN Grid title_users_sub_dept_sex -->
<table class="table">
<!-- BEGIN Row -->
<tr>
<th>Surname</th>
<td>{surname} </td>
<th>Other Names</th>
<td>{other_names} </td>
</tr>
<tr>
<th>Age</th>
<td>{age} </td>
<th>Sex</th>
<td>{sex} </td>
</tr>
<tr>
<th>Hospital No</th>
<td>{hospital_no} </td>
<th>Ward/Clinic</th>
<td>{clinic} </td>
</tr>
<tr>
<td colspan="4"><u>{sub_dept}</u>      {todaysDate}<br>
<br>
{result}</td>
</tr>
<tr>
<th>Conclusion</th>
<td colspan="3">{conclusion} </td>
</tr>
<tr>
<td colspan="4"><br>
<br>
<u>          </u><br>
 {title} {first_name} {last_name}</td>
</tr>
<!-- END Row -->
<!-- BEGIN NoRecords -->
<tr>
<td colspan="4">Report Information incorrect!</td>
</tr>
<!-- END NoRecords -->
</table>
<!-- END Grid title_users_sub_dept_sex -->
<div class="pull-right">
<code>Printed by: {Label1}</code>
</div>
</div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript">
$('#popover').popover();
</script>
</body>
</html>