5ba7aa74f7
Added the half-second task type, you'll why later ;) Reduced the amount of code duplication in the panel routes (saved a hundred lines). Added the two day time range option for graphs. We now track the discord, lynx and blank user agents. Renamed some template files for consistency and to help stamp out some duplicate code. Began work on topic move.
23 lines
685 B
HTML
23 lines
685 B
HTML
{{template "header.html" . }}
|
|
<div class="colstack panel_stack">
|
|
{{template "panel-menu.html" . }}
|
|
<main class="colstack_right">
|
|
<div class="colstack_item colstack_head">
|
|
<div class="rowitem"><h1>Backups</h1></div>
|
|
</div>
|
|
<div id="panel_backups" class="colstack_item rowlist">
|
|
{{range .Backups}}
|
|
<div class="rowitem panel_compactrow">
|
|
<span>{{.SQLURL}}</span>
|
|
<span class="panel_floater">
|
|
<a href="/panel/backups/{{.SQLURL}}" class="panel_tag panel_right_button">Download</a>
|
|
</span>
|
|
</div>
|
|
{{else}}
|
|
<div class="rowitem">There aren't any backups available at this time.</div>
|
|
{{end}}
|
|
</div>
|
|
</main>
|
|
</div>
|
|
{{template "footer.html" . }}
|