9a93f799bf
Added the Forum Store. Rewrote all the forum slice calls to use it. Remapped sql.ErrNoRows to ErrNoRows for portability. Removed a pointless column in the login query. Revamped the tags and buttons on Tempra Simple, and on the profiles for the other themes. Fixed a padding bug. Tweaked the font sizes and padding in the Control Panel for Tempra Simple. More progress with widgets.
33 lines
1.2 KiB
HTML
33 lines
1.2 KiB
HTML
{{template "header.html" . }}
|
|
<div class="colstack_left">
|
|
<div class="colstack_item colstack_head">
|
|
<div class="rowitem rowhead"><a href="/panel/logs/mod/">Logs</a></div>
|
|
</div>
|
|
<div class="colstack_item">
|
|
<div class="rowitem passive"><a href="/panel/logs/mod/">Moderation Logs</a></div>
|
|
{{if .CurrentUser.Perms.ViewAdminLogs}}<div class="rowitem passive"><a>Administration Logs</a></div>{{end}}
|
|
{{if .CurrentUser.Perms.ViewAdminLogs}}<div class="rowitem passive"><a>System Logs</a></div>{{end}}
|
|
</div>
|
|
{{template "panel-inner-menu.html" . }}
|
|
</div>
|
|
<div class="colstack_right">
|
|
<div class="colstack_item colstack_head">
|
|
<div class="rowitem rowhead"><a>Moderation Logs</a></div>
|
|
</div>
|
|
<div id="panel_modlogs" class="colstack_item">
|
|
{{range .Logs}}
|
|
<div class="rowitem panel_compactrow" style="font-weight: normal;text-transform: none;">
|
|
<span style="float: left;">
|
|
<span>{{.Action}}</span><br />
|
|
<small style="margin-left: 2px;font-size: 12px;">{{.IPAddress}}</small>
|
|
</span>
|
|
<span style="float: right;">
|
|
<span style="font-size: 14px;">{{.DoneAt}}</span>
|
|
</span>
|
|
<div style="clear: both;"></div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
{{template "footer.html" . }}
|