You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
326 B
Cheetah
18 lines
326 B
Cheetah
{{template "header.tmpl" .}}
|
|
<h1>All Users</h1>
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Preferred Username</th>
|
|
<th>Actor IRI</th>
|
|
</tr>
|
|
{{range $i, $u := .Other}}
|
|
<tr>
|
|
<td>{{$u.name}}</td>
|
|
<td>{{$u.preferredUsername}}</td>
|
|
<td><a href="{{$u.id}}">{{$u.id}}</a></td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
{{template "footer.tmpl" .}}
|