This repository has been archived on 2019-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
scoreboard/templates/groupMaster.html
2019-05-27 23:46:09 +02:00

16 lines
No EOL
392 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Abistreiche</title>
</head>
<body>
<a href="/">Abistreiche</a>
<h1>Gruppen</h1>
<input type="text" placeholder="Search...">
<ul>
{{range .Groups}}
<li><a href="/groups/{{.ID}}">{{.Name}}</a><span>{{.PointSum}}</span></li>
{{end}}
</ul>
</body>
</html>