working on event detail page
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
29
de.srsoftware.cal.web/src/main/resources/index.html
Normal file
29
de.srsoftware.cal.web/src/main/resources/index.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>SRSoftware OpenCloudCal</title>
|
||||
<script src="/static/script/occ.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<nav />
|
||||
<div>
|
||||
<h1>Event List</h1>
|
||||
<table id="eventlist">
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>Start</th>
|
||||
<th>End</th>
|
||||
<th>Location</th>
|
||||
<th>Title</th>
|
||||
<th>Tags</th>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<script>
|
||||
document.addEventListener("DOMContentLoaded", function(event){
|
||||
console.log("page loaded…");
|
||||
loadCurrentEvents();
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user