gosora/templates/panel-analytics-routes.html
Azareal e259a575e9 Added some basic route statistics to the Control Panel.
Fixed the direction of the labels on the views graph.
2018-01-04 10:23:33 +00:00

19 lines
621 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>Routes</a></div>
</div>
<div id="panel_analytics_routes" class="colstack_item rowlist">
{{range .ItemList}}
<div class="rowitem panel_compactrow editable_parent">
<a href="/panel/groups/edit/{{.Route}}" class="panel_upshift">{{.Route}}</a>
<span class="panel_compacttext to_right">{{.Count}}</span>
</div>
{{end}}
</div>
</main>
</div>
{{template "footer.html" . }}