33 lines
849 B
Go Template
33 lines
849 B
Go Template
<!doctype html>
|
|
<html>
|
|
<head>
|
|
{{template "head"}}
|
|
</head>
|
|
|
|
<body>
|
|
<div style="height: 100svh;" class="d-flex flex-column">
|
|
{{template "navbar" .Navbar}}
|
|
<div class="overflow-y-scroll flex-grow-1">
|
|
<div class="container py-5">
|
|
<section class="card">
|
|
<div class="card-body">
|
|
<h2><em>{{.Group.Name}}</em> group members</h2>
|
|
{{with .Group.Members}}
|
|
<ul class="list-group">
|
|
{{range .}}
|
|
<li class="list-group-item">
|
|
<a href="/lists/{{.Reference}}">{{.Name}}</a>
|
|
</li>
|
|
{{end}}
|
|
</ul>
|
|
{{else}}
|
|
<p>There's nobody else in this group.</p>
|
|
{{end}}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|