25 lines
526 B
HTML
25 lines
526 B
HTML
{{ define "title" }}Control Panel{{ end }} {{ define "header" }}⚙️ Control
|
|
Panel{{ end }} {{ define "content" }}
|
|
|
|
<div>
|
|
{{ if .Message }}
|
|
<strong>Info:</strong> {{ .Message }} {{ end }}
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Action</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><a href="/cp?action=ClearDailyStats">Clear Daily Stats</a></td>
|
|
<td>Clear Daily Stats cache</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
{{ end }} {{ template "layout" . }}
|