forked from bati-itao/reports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
monthly-report-results.html
160 lines (144 loc) · 6.04 KB
/
monthly-report-results.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<!-- Web Experience Toolkit (WET) / Boîte à outils de l'expérience Web (BOEW) wet-boew.github.io/wet-boew/License-en.html / wet-boew.github.io/wet-boew/Licence-fr.html -->
<title>Monthly Report - ESDC / IT Accessibility office</title>
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- Meta data -->
<meta name="description"
content="IT Accessibility Office provides adaptive technology and advocate for inclusiveness of people with disabilities in the workplace.">
<!-- Meta data-->
<!-- Load closure template scripts -->
<script src="https://ssl-templates.services.gc.ca/rn/cls/wet/gcweb/cdts/compiled/soyutils.js"></script>
<script src="https://ssl-templates.services.gc.ca/rn/cls/wet/gcweb/cdts/compiled/wet-en.js"></script>
<!-- Write closure template -->
<script src="https://bati-itao.github.io/scripts/refTop.min.js"></script>
<!-- Scripts needed to generate the reports-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="scripts/monthly-report.js"></script>
<script src="scripts/csd.js"></script>
<script src="scripts/dml.js"></script>
</head>
<body vocab="https://schema.org/" typeof="WebPage">
<div id="def-top">
</div>
<script>
$( document ).ready(function() {
validateForm();
});
var defTop = document.getElementById("def-top");
defTop.outerHTML = wet.builder.appTop({
"appName": [{
"text": "ESDC / IT Accessibility office",
"href": "https://bati-itao.github.io/"
}],
"breadcrumbs": [{
"title": "Reports",
"href": "./index.html"
}],
"lngLinks": [{
"lang": "fr",
"href": "./_template-fr.html",
"text": "Français"
}],
"menuPath": "https://bati-itao.github.io/ajax/menu-en.html"
});
</script>
<main role="main" property="mainContentOfPage" class="container">
<div id="monthlyReport">
</div>
<h2>Accessibility Compliance</h2>
<div class="alert alert-warning">
<p>Please note that the section below is updated manually each month and is not generated from the monthly report form.</p>
</div>
<table class="table">
<caption>Web Standards Centre of Expertise (WS CoE) Report</caption>
<thead>
<tr>
<th>Fiscal 2019-20</th>
<th>Public Facing Total Number of Applications</th>
<th>(Source TS) # at 100%</th>
<th># < 100%</th>
<th>TBD</th>
</tr>
</thead>
<tbody>
<tr>
<th>Q4</th>
<td id="publicFacingTotal"></td>
<td id="number1"></td>
<td id="number2"></td>
<td id="number3"></td>
</tr>
<tr>
<th>Q1</th>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>Q2</th>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<th>Q3</th>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table class="table">
<caption>COTS and Other Applications (Desktop, Mainframe, Etc.)</caption>
<thead>
<tr>
<th>Year to Date (2019-2020)</th>
<th>Total Number of Applications</th>
<th>Total Compliant</th>
</tr>
</thead>
<tbody>
<tr>
<th>Custom</th>
<td id="customTotalApp"></td>
<td id="customTotalCompliant"></td>
</tr>
<tr>
<th>COTS</th>
<td id="cotsTotalApp"></td>
<td id="cotsTotalCompliant"></td>
</tr>
</tbody>
</table>
<button id="submitButton" type="submit" class="btn btn-default hidden-print" onclick="window.print();return false;"><span
class="fa fa-print"></span> Print</button> <ul class="pager">
<li class="previous"><a href="monthly-report.html" rel="prev">Back to Monthly Report Form</a></li>
</ul>
<div id="def-preFooter" class="hidden-print"></div>
<script src="https://bati-itao.github.io/scripts/preFooter.min.js"></script>
</main>
<div id="def-footer" class="hidden-print"></div>
<script src="https://bati-itao.github.io/scripts/appFooter.min.js"></script>
<script src="https://bati-itao.github.io/scripts/refFooter.min.js"></script>
<script src="https://bati-itao.github.io/scripts/bati-itao.min.js"></script>
<script>
document.getElementById("customTotalApp").innerHTML = customTotalApp;
document.getElementById("customTotalCompliant").innerHTML = customTotalCompliant;
document.getElementById("cotsTotalApp").innerHTML = cotsTotalApp;
document.getElementById("cotsTotalCompliant").innerHTML = cotsTotalCompliant;
document.getElementById("publicFacingTotal").innerHTML = publicFacingTotal;
document.getElementById("number1").innerHTML = number1;
document.getElementById("number2").innerHTML = number2;
document.getElementById("number3").innerHTML = number3;
</script>
</body>
</html>