2022-08-06 17:33:37 +00:00
{{define "user x"}}User {{.}}{{end}}
{{define "title"}}{{template "user x" .U.Name}}{{end}}
{{define "body"}}
< main class = "main-width form-wrap" >
< h1 >
< a href = "/admin/users/" > ← < / a >
{{.U.Name}}
< / h1 >
< h2 > {{block "change group" .}}Change group{{end}}< / h2 >
{{if .Form.HasError}}
< div class = "notice notice--error" >
< strong > {{template "error"}}:< / strong >
{{.Form.Error}}
< / div >
{{end}}
< form action = "" method = "post" >
< div class = "form-field" >
< select id = "group" name = "group" aria-label = "{{block " group " . } } Group { { end } } " >
< option { { if . Form . Get " group " | eq " anon " } } selected { { end } } > anon< / option >
2022-09-14 20:35:43 +00:00
< option { { if . Form . Get " group " | eq " reader " } } selected { { end } } > reader< / option >
2022-08-06 17:33:37 +00:00
< option { { if . Form . Get " group " | eq " editor " } } selected { { end } } > editor< / option >
< option { { if . Form . Get " group " | eq " trusted " } } selected { { end } } > trusted< / option >
< option { { if . Form . Get " group " | eq " moderator " } } selected { { end } } > moderator< / option >
< option { { if . Form . Get " group " | eq " admin " } } selected { { end } } > admin< / option >
< / select >
< / div >
< div class = "form-field" >
< button class = "btn" type = "submit" > {{block "update" .}}Update{{end}}< / button >
< / div >
< / form >
< h2 > {{block "delete user" .}}Delete user{{end}}< / h2 >
< p > {{block "delete user tip" .}}Remove the user from the database. Changes made by the user will be preserved. It will be possible to take this username later.{{end}}< / p >
< a class = "btn btn_destructive" href = "/admin/users/{{.U.Name}}/delete" > {{template "delete"}}< / a >
< / main >
2022-09-14 20:35:43 +00:00
{{end}}