-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminReviewReport.html
More file actions
41 lines (38 loc) · 1.67 KB
/
Copy pathadminReviewReport.html
File metadata and controls
41 lines (38 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Review admin report — DDAI Skills Framework</title>
<link rel="stylesheet" href="css/framework.css">
<link rel="stylesheet" href="css/admin-review-report.css">
</head>
<body class="admin-report-page">
<header class="admin-report-header">
<div class="admin-report-header-inner">
<div class="admin-report-header-row">
<div>
<h1>Review admin report</h1>
<p class="admin-report-lead">All reviewer verdicts, comments and recommendations across the framework review.</p>
</div>
<div id="admin-auth-bar" class="admin-auth-bar"></div>
</div>
<div class="admin-report-toolbar" id="admin-toolbar" hidden>
<label class="admin-filter-toggle">
<input type="checkbox" id="show-empty-items">
Show items with no feedback
</label>
<button type="button" class="btn btn-secondary btn-sm" id="print-report-btn">Print full report</button>
<a href="reviewView.html" class="btn btn-secondary btn-sm">Back to review</a>
</div>
</div>
</header>
<p id="admin-error" class="admin-error admin-report-header-inner" hidden></p>
<p id="admin-loading" class="admin-loading admin-report-header-inner">Loading report…</p>
<div id="admin-report-layout" class="admin-report-layout" hidden>
<nav id="admin-step-nav" class="admin-step-nav" aria-label="Review steps"></nav>
<main id="admin-report-panels" class="admin-report-panels" aria-live="polite"></main>
</div>
<script type="module" src="js/admin-review-report.js"></script>
</body>
</html>