99da1fcbaa
Added support for temporary bans. Moved the Gosora specific template logic out of main.go and into template_init.go Added an internal temporary group API. We now use h1s in the theme headers. There may be some issues with the themes other than Shadow which we may need to resolve. Added ARIA attributes in a few places for improved accessibility. Added support for inputs in links for the .edit_field API. Removed a few unneccesary prepared statements.
47 lines
2.0 KiB
HTML
47 lines
2.0 KiB
HTML
{{template "header.html" . }}
|
|
<nav class="colstack_left">
|
|
<div class="colstack_item colstack_head">
|
|
<div class="rowitem"><a href="/panel/groups/edit/{{.ID}}">Group Editor</a></div>
|
|
</div>
|
|
<div class="colstack_item rowmenu">
|
|
<div class="rowitem passive"><a href="/panel/groups/edit/{{.ID}}">General</a></div>
|
|
<div class="rowitem passive"><a>Promotions</a></div>
|
|
<div class="rowitem passive"><a href="/panel/groups/edit/perms/{{.ID}}">Permissions</a></div>
|
|
</div>
|
|
{{template "panel-inner-menu.html" . }}
|
|
</nav>
|
|
<main class="colstack_right">
|
|
<div class="colstack_item colstack_head">
|
|
<div class="rowitem"><h1>{{.Name}} Group</h1></div>
|
|
</div>
|
|
<div id="panel_group" class="colstack_item">
|
|
<form action="/panel/groups/edit/submit/{{.ID}}?session={{.CurrentUser.Session}}" method="post">
|
|
<div class="formrow">
|
|
<div class="formitem formlabel"><a>Name</a></div>
|
|
<div class="formitem"><input name="group-name" type="text" value="{{.Name}}" placeholder="Random Group" /></div>
|
|
</div>
|
|
{{if .CurrentUser.Perms.EditGroup}}
|
|
<div class="formrow">
|
|
<div class="formitem formlabel"><a>Type</a></div>
|
|
<div class="formitem">
|
|
<select name="group-type"{{if .DisableRank}} disabled{{end}}>
|
|
<option{{if eq .Rank "Guest"}} selected{{end}} disabled>Guest</option>
|
|
<option{{if eq .Rank "Member"}} selected{{end}}>Member</option>
|
|
<option{{if eq .Rank "Mod"}} selected{{end}}{{if not .CurrentUser.Perms.EditGroupSuperMod}} disabled{{end}}>Mod</option>
|
|
<option{{if eq .Rank "Admin"}} selected{{end}}{{if not .CurrentUser.Perms.EditGroupAdmin}} disabled{{end}}>Admin</option>
|
|
<option{{if eq .Rank "Banned"}} selected{{end}}>Banned</option>
|
|
</select>
|
|
</div>
|
|
</div>{{end}}
|
|
<div class="formrow">
|
|
<div class="formitem formlabel"><a>Tag</a></div>
|
|
<div class="formitem"><input name="group-tag" type="text" value="{{.Tag}}" placeholder="VIP" /></div>
|
|
</div>
|
|
<div class="formrow">
|
|
<div class="formitem"><button name="panel-button" class="formbutton">Update Group</button></div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
{{template "footer.html" . }}
|