-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTestWorkReport3.html
102 lines (82 loc) · 1.54 KB
/
TestWorkReport3.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
<html>
<head>
<title>Software Engineering 2016-05-09</title>
<script>
function ShowHide(body_id){
var TBody
TBody = document.getElementById(body_id);
if(!TBody) return true;
if (TBody.style.display=="none") {
TBody.style.display="block"
}
else {
TBody.style.display="none"
}
return true;
}
</script>
</head>
<body>
<center><h1>Software Engineering</h1></center>
<br />
<br />
<center><h3>Activities</h3></center>
<br />
<table border="1">
<tr>
<th colspan="2">Implementation</th>
</tr>
<tr>
<td colspan="2">Hours</td>
</tr>
<tr>
<td>Expected</td>
<td>42</td>
</tr>
<tr>
<td>Hours spent total</td>
<td>0:0</td>
</tr>
<tr>
<td>Hours spent past week</td>
<td>0:0</td>
</tr>
</table>
<table border ="1">
<tr><td><a href="#" onClick="ShowHide('0')">Show employee data</a></td></tr>
<tbody id = "0" style="display: none;">
<tr>
<th>Employee name</th>
<th>Hours past week</th>
<th>Hours total</th>
</tr>
<tr>
<td>Hubert Baumeister</td>
<td>0:0</td>
<td>0:0</td>
</tr>
<tr>
<th>Employee name</th>
<th>Hours past week</th>
<th>Hours total</th>
</tr>
<tr>
<td>Marcus Pagh</td>
<td>0:0</td>
<td>0:0</td>
</tr>
<tr>
<th>Employee name</th>
<th>Hours past week</th>
<th>Hours total</th>
</tr>
<tr>
<td>Morten Telling</td>
<td>0:0</td>
<td>0:0</td>
</tr>
</tbody>
</table>
<br />
</body>
</html>