-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-template-no-comments.html
123 lines (113 loc) · 2.66 KB
/
main-template-no-comments.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>R/S</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link href="css/normalize.css" rel="stylesheet" media="all">
<link href="css/styles.css" rel="stylesheet" media="all">
<script src="js/html5shiv-printshiv.js"></script>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td,
th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<header role="banner">
<h1>RiskSev</h1>
<nav role="navigation">
</nav>
</header>
<br>
<div class="wrap">
<main role="main">
<h2 id ="clickH2">Pull Tasks</h2>
<button id="buttonPull">Go</button>
<table id="tableOutput">
<tr>
<th>Priority</th>
<th>PM</th>
<th>Asset</th>
<th>Risk</th>
<th>Severity</th>
<th>PD Code</th>
<th>Estimated Time</th>
</tr>
<tr>
<td>0</td>
<td>Ernst Handel</td>
<td>Laughing Winecellars</td>
<td>2</td>
<td>3</td>
<td>0</td>
<td>15 min</td>
</tr>
<tr>
<td>0</td>
<td>Ernst Handel</td>
<td>Bacchus</td>
<td>2</td>
<td>5</td>
<td>0</td>
<td>60 min</td>
</tr>
<tr>
<td>4</td>
<td>Wozniack</td>
<td>Laughing Winecellars</td>
<td>1</td>
<td>4</td>
<td>1</td>
<td>90 min</td>
</tr>
<tr>
<td>12</td>
<td>Canada</td>
<td>Bacchus Winecellars</td>
<td>2</td>
<td>3</td>
<td>2</td>
<td>145 min</td>
</tr>
<tr>
<td>12</td>
<td>Yoshi Tannamuri</td>
<td>Laughing Bacchus Winecellars</td>
<td>2</td>
<td>2</td>
<td>3</td>
<td>5 min</td>
</tr>
<tr>
<td>18</td>
<td>Ernst Handel</td>
<td>Laughing Winecellars</td>
<td>3</td>
<td>2</td>
<td>3</td>
<td>25 min</td>
</tr>
</table>
</div>
<br><br><br><br>
<footer role="contentinfo">
<address>
<p>For further information, please contact <a href="mailto:[email protected]">Marcus M Larson</a>.</p>
</address>
<small>Copyright © <time>2022</time></small>
</footer>
</body>
</html>