-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprint.html
More file actions
86 lines (72 loc) · 3.12 KB
/
print.html
File metadata and controls
86 lines (72 loc) · 3.12 KB
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8">
<title>Report Survey</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/print.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="page">
<div class="header">
<div>
<h5><b id="date"></b></h5>
<h5><b id="form"></b></h5>
<h5><b id="tags"></b></h5>
</div>
<div class="text-right">
<h5><b id = "total"></b></h5>
<h5 id = "isCompleted_true"></h5>
<h5 id = "isCompleted_false"></h5>
<h5 id = "isUnidentify_true"></h5>
<h5 id = "isUnidentify_false"></h5>
</div>
</div>
<div class="break-header"></div>
<!--<div class="row">
<h4 class="text-center"><b id = "total" style="font-size:20px;"></b></h4>
<div class="col-xs-12 text-center filter-type">
<div class="col-xs-3" id = "isCompleted_true"></div>
<div class="col-xs-3" id = "isCompleted_false"></div>
<div class="col-xs-3" id = "isUnidentify_true"></div>
<div class="col-xs-3" id = "isUnidentify_false"></div>
</div>
</div>-->
<hr class="showprint">
<div class="row">
<div class = "col-xs-12">
<h5 class="margin-left">
<i class="fa fa-bar-chart" aria-hidden="true" style="font-size:15px;"></i>
<b>Summary</b>
</h5>
<div class = "col-xs-8">
<div id="sum_graph_line" class="graph1" style="margin: 0;min-width: 310px; max-width: 800px;">
</div>
<!--Graph gender if question more than 5 number-->
<div id="sum_graph_gender_more" class="graph1" style="margin: 0; height:200px;display:none;">
</div>
</div>
<div class = "col-xs-4" style="padding:0;" id = "score">
<!--score here-->
</div>
</div>
<div class = "col-xs-12">
<div id="sum_graph_gender_less" class="graph1" style="margin: 0; height:200px;display:none;"></div>
</div>
</div>
<hr>
<div class="row" id = "question">
</div>
</div>
<img src="img/pdf.png" id="cmd" class="export-btn" onclick="ctrl.exportPDF();" />
</body>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/moment.min.js"></script>
<script type="text/javascript" src="js/highcharts.js"></script>
<script type="text/javascript" src="js/printscript.js"></script>
</html>