34 lines
703 B
HTML
34 lines
703 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Trikotwaschliste</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/semantic.min.css">
|
|
</head>
|
|
<body>
|
|
|
|
{{template "navbar"}}
|
|
<div class="ui center">
|
|
<h1 class="">Trikotwaschliste</h1>
|
|
<table class="ui celled table">
|
|
<thead>
|
|
<tr>
|
|
<th>Person</th>
|
|
<th>Waschgänge</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ $items := .items}}
|
|
{{range $item := $items}}
|
|
<tr>
|
|
<td>{{$item.Name}}</td>
|
|
<td>{{$item.Count}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html> |