<div class="colstack_item colstack_head">
		<div class="rowitem"><h1>{{lang "panel_users_head"}}</h1></div>
	</div>
	<div id="panel_users" class="colstack_item rowlist bgavatars">
		{{range .ItemList}}
		<div class="rowitem editable_parent" style="background-image: url('{{.Avatar}}');">
			<img class="bgsub" src="{{.Avatar}}" alt="{{.Name}}'s Avatar" />
			<a class="rowTitle editable_block"{{if $.CurrentUser.Perms.EditUser}} href="/panel/users/edit/{{.ID}}?session={{$.CurrentUser.Session}}"{{end}}>{{.Name}}</a>
			<span class="panel_floater">
				<a href="{{.Link}}" class="tag-mini profile_url">{{lang "panel_users_profile"}}</a>
				{{if (.Tag) and (.IsSuperMod)}}<span class="panel_tag">{{.Tag}}</span></span>{{end}}
				{{if .IsBanned}}<a href="/users/unban/{{.ID}}?session={{$.CurrentUser.Session}}" class="panel_tag panel_right_button ban_button">{{lang "panel_users_unban"}}</a>{{else if not .IsSuperMod}}<a href="/user/{{.ID}}#ban_user" class="panel_tag panel_right_button ban_button">{{lang "panel_users_ban"}}</a>{{end}}
				{{if not .Active}}<a href="/users/activate/{{.ID}}?session={{$.CurrentUser.Session}}" class="panel_tag panel_right_button">{{lang "panel_users_activate"}}</a>{{end}}
			</span>
		</div>
		{{end}}
	</div>
	{{template "paginator.html" . }}