-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from OSobky/release/v1.0
Release/v1.0
- Loading branch information
Showing
5 changed files
with
360 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |
Oops, something went wrong.