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/groupDetail.html
2019-05-27 23:46:09 +02:00

15 lines
No EOL
346 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Abistreiche</title>
</head>
<body>
<a href="/groups">Gruppen</a>
<h1>{{.Group.Name}}</h1>
<ul>
{{range .Group}}
<li><a href="/groups/{{.ID}}">{{.Name}}</a><span>{{.Points}}</span>/li>
{{end}}
</ul>
</body>
</html>