-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguc_comments.html
53 lines (46 loc) · 1.22 KB
/
guc_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
<html>
<head>
<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>
<h1> GUC Comments</h1>
<h2>{{.Course}} </h2>
<select onchange="rout(this.value)">
<option> </option>
<option value="http://localhost:3000/MICRO">CSEN 702 Microprocessors </option>
<option value="http://localhost:3000/ANALYSIS">CSEN 703 Analysis and Design of Algorithms </option>
<option value="http://localhost:3000/ADVANCED">CSEN 704 Advanced computer lab </option>
</select>
<script>
function rout(src){
window.location.href=src;
}
</script>
<table>
<tr>
<th>Comments</th>
</tr>
{{range .Guccommentss}}
<tr>
<td>
{{.Comments}}
</td>
</tr>
{{end}}
</table>
</body>
</html>