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.
20 lines
757 B
HTML
20 lines
757 B
HTML
{{template "header.html" . }}
|
|
<div class="colstack panel_stack">
|
|
{{template "panel-menu.html" . }}
|
|
<main id="panel_dashboard_right" class="colstack_right">
|
|
<div class="colstack_item colstack_head">
|
|
<div class="rowitem"><a>Debug</a></div>
|
|
</div>
|
|
<div id="panel_debug" class="colstack_grid">
|
|
<div class="grid_item grid_stat"><span>Uptime</span></div>
|
|
<div class="grid_item grid_stat"><span>Open DB Conns</span></div>
|
|
<div class="grid_item grid_stat"><span>Adapter</span></div>
|
|
|
|
<div class="grid_item grid_stat"><span>{{.Uptime}}</span></div>
|
|
<div class="grid_item grid_stat"><span>{{.OpenConns}}</span></div>
|
|
<div class="grid_item grid_stat"><span>{{.DBAdapter}}</span></div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
{{template "footer.html" . }}
|