{{define "admin/users"}} {{template "admin/head" .}} {{template "admin/navigation" .}}
{{template "skel/flash" .}}

User management

Add an user | Invite an user

{{with .user_invites}}

Open Invites

{{range .}} {{end}}
Created at Username E-mail Display name Admin Invited by Actions
{{.CreatedAt | FormatDateTime}} {{.Username}} {{.Email}} {{.DisplayName}} {{.IsAdmin | BoolToIcon}} {{.CreatedBy.DisplayName}}
{{$.csrfField}}
Remove

{{end}}

Users

{{range .users}} {{end}}
Last modified Username E-mail Display name Active Admin Actions
{{.LastModified | FormatDateTime}} {{.Username}} {{.Email}} {{.DisplayName}} {{.Active | BoolToIcon}} {{.IsAdmin | BoolToIcon}} Edit Remove
{{template "skel/pagination" .}}
{{template "admin/footer" .}} {{end}}