30 lines
690 B
HTML
30 lines
690 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{template "head.html" .}} <!-- Include header template -->
|
|
|
|
<body>
|
|
{{template "header.html" .}}
|
|
<h1>Trainings</h1>
|
|
<a href="/">Back to Home</a>
|
|
<table border="1">
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Type</th>
|
|
<th>Mode</th>
|
|
<th>Start</th>
|
|
<th>End</th>
|
|
<th>Status</th>
|
|
</tr>
|
|
{{ range . }}
|
|
<tr>
|
|
<td>{{ .Title }}</td>
|
|
<td>{{ .TrainingType }}</td>
|
|
<td>{{ .Mode }}</td>
|
|
<td>{{ .Start }}</td>
|
|
<td>{{ .End }}</td>
|
|
<td>{{ .Status }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</table>
|
|
</body>
|
|
</html>
|