mirror of
https://github.com/writefreely/writefreely
synced 2024-12-04 14:29:15 +00:00
c3f76a3ab8
This puts the verbiage more in line with what the feature does, and leaves room for other moderation controls in the future. NOTE: this includes no backend refactoring, which may be confusing. We should rename things to fit ASAP. Ref T661
33 lines
958 B
Cheetah
33 lines
958 B
Cheetah
{{define "users"}}
|
|
{{template "header" .}}
|
|
|
|
<div class="snug content-container">
|
|
{{template "admin-header" .}}
|
|
|
|
<h2 id="posts-header" style="display: flex; justify-content: space-between;">Users <span style="font-style: italic; font-size: 0.75em;">{{.TotalUsers}} total</strong></h2>
|
|
|
|
<table class="classy export" style="width:100%">
|
|
<tr>
|
|
<th>User</th>
|
|
<th>Joined</th>
|
|
<th>Type</th>
|
|
<th>Status</th>
|
|
</tr>
|
|
{{range .Users}}
|
|
<tr>
|
|
<td><a href="/admin/user/{{.Username}}">{{.Username}}</a></td>
|
|
<td>{{.CreatedFriendly}}</td>
|
|
<td style="text-align:center">{{if .IsAdmin}}Admin{{else}}User{{end}}</td>
|
|
<td style="text-align:center">{{if .IsSilenced}}Silenced{{else}}Active{{end}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
|
|
<nav class="pager">
|
|
{{range $n := .TotalPages}}<a href="/admin/users{{if ne $n 1}}?p={{$n}}{{end}}" {{if eq $.CurPage $n}}class="selected"{{end}}>{{$n}}</a>{{end}}
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
{{template "footer" .}}
|
|
{{end}}
|