aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/admin/templates/users.html
blob: 656ad5379850d5df436f67ea8ec7893636c61321 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ template "base.html" . }}

{{ define "breadcrumb" }}
<a href="/admin/dashboard">Dashboard</a>
{{ end }}

{{ define "content" }}
<ul>
  {{ range .Users }}
    <li>
      <a href="/admin/users/{{ .UserID }}">
        {{ .DisplayName }} (id={{ .UserID }} username={{ .Username }}){{ if .IsAdmin }} <em>admin</em>{{ end }}
      </a>
    </li>
  {{ end }}
</ul>
{{ end }}