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

15 lines
346 B
HTML
Raw Permalink Normal View History

2019-05-27 21:46:09 +00:00
<!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>