9f2efce516
The router is now benchmarked. The custom router we'll use to replace it will also be benchmarked once it's completed. Added a placeholder page for the Control Panel Dashboard. Tightened some of the control panel route permission checks. Moved the Control Panel menu into it's own template. Added permission checks to the links on the Control Panel menu.
35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
{{template "header.html" . }}
|
|
{{template "panel-menu.html" . }}
|
|
<div class="colblock_right">
|
|
<div class="rowitem"><a>Edit Setting</a></div>
|
|
</div>
|
|
<div class="colblock_right">
|
|
<form action="/panel/settings/edit/submit/{{.Something.Name}}?session={{.CurrentUser.Session}}" method="post">
|
|
<div class="formrow">
|
|
<div class="formitem"><a>Setting Name</a></div>
|
|
<div class="formitem">{{.Something.Name}}</div>
|
|
</div>
|
|
{{if eq .Something.Type "list"}}
|
|
<div class="formrow">
|
|
<div class="formitem"><a>Setting Value</a></div>
|
|
<div class="formitem">
|
|
<select name="setting-value">
|
|
{{range .ItemList}}<option{{if .Selected}} selected{{end}} value="{{.Value}}">{{.Label}}</option>{{end}}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
{{else if eq .Something.Type "bool"}}
|
|
<div class="formrow">
|
|
<div class="formitem"><a>Setting Value</a></div>
|
|
<div class="formitem"><input name="setting-value" type="checkbox"{{if eq .Something.Content "1"}} checked{{end}} /></div>
|
|
</div>
|
|
{{else}}<div class="formrow">
|
|
<div class="formitem"><a>Setting Value</a></div>
|
|
<div class="formitem"><input name="setting-value" type="text" value="{{.Something.Content}}" /></div>
|
|
</div>{{end}}
|
|
<div class="formrow">
|
|
<div class="formitem"><button name="panel-button" class="formbutton">Update Setting</div></div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{{template "footer.html" . }} |