{{define "admin"}} {{.Title}} {{template "navbar" .}}

Admin Panel

{{if .ShowSuccess}}
Settings saved successfully!
{{end}} {{if .ShowDeleted}}
User deleted successfully.
{{end}}

Registration

When disabled, the signup page redirects to login and prevents account creation.

User Management

{{if .Users}} {{range .Users}} {{end}}
Username Display Name Joined Actions
{{.Username}}{{if eq .ID $.CurrentUserID}} (you){{end}} {{if .DisplayName}}{{.DisplayName}}{{else}}—{{end}} {{.CreatedAt.Format "02/01/2006"}} {{if ne .ID $.CurrentUserID}}
{{end}}
{{else}}

No users found.

{{end}}
{{template "cookie_banner" .}} {{end}}