Files
trikotwaschliste/html/mainpage/index.html
2020-10-09 15:10:13 +02:00

53 lines
1.6 KiB
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>Datum</th>
<th>Gewaschen?</th>
<th>Waschperson</th>
</tr>
</thead>
<tbody>
{{ $items := .items}}
{{ $persons := .persons}}
{{range $item := $items}}
<tr>
<td>{{$item.Person}}</td>
<td>{{$item.Date}}</td>
<td>{{$item.Washed}}</td>
<td>
<div class="center">
<form class="ui form" action="/uploadname" method="POST">
<input type="hidden" id="washid" name="washid" value="{{ $item.Id}}">
<select name="names" id="names">
<option value="-1" selected></option>
{{range $person := $persons}}
<option value="{{$person.Id}}">{{$person.Name}}</option>
{{end}}
</select>
<input type="submit" value="Speichern">
</form>
</div>
</td>
</tr>
{{end}}
</tbody>
</table>
</div>
</body>
</html>