2018-01-04 10:23:33 +00:00
|
|
|
{{template "header.html" . }}
|
|
|
|
<div class="colstack panel_stack">
|
|
|
|
{{template "panel-menu.html" . }}
|
2018-02-10 15:07:21 +00:00
|
|
|
<main id="panel_analytics_right" class="colstack_right">
|
2018-01-17 11:13:08 +00:00
|
|
|
<form id="timeRangeForm" name="timeRangeForm" action="/panel/analytics/routes/" method="get">
|
|
|
|
<div class="colstack_item colstack_head">
|
|
|
|
<div class="rowitem">
|
|
|
|
<a>Routes</a>
|
|
|
|
<select class="timeRangeSelector to_right" name="timeRange">
|
|
|
|
<option val="one-month"{{if eq .TimeRange "one-month"}} selected{{end}}>1 month</option>
|
2018-02-22 02:27:17 +00:00
|
|
|
<option val="one-week"{{if eq .TimeRange "one-week"}} selected{{end}}>1 week</option>
|
2018-01-17 11:13:08 +00:00
|
|
|
<option val="two-days"{{if eq .TimeRange "two-days"}} selected{{end}}>2 days</option>
|
|
|
|
<option val="one-day"{{if eq .TimeRange "one-day"}} selected{{end}}>1 day</option>
|
|
|
|
<option val="twelve-hours"{{if eq .TimeRange "twelve-hours"}} selected{{end}}>12 hours</option>
|
|
|
|
<option val="six-hours"{{if eq .TimeRange "six-hours"}} selected{{end}}>6 hours</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2018-01-04 10:23:33 +00:00
|
|
|
<div id="panel_analytics_routes" class="colstack_item rowlist">
|
|
|
|
{{range .ItemList}}
|
|
|
|
<div class="rowitem panel_compactrow editable_parent">
|
2018-01-05 22:47:13 +00:00
|
|
|
<a href="/panel/analytics/route/{{.Route}}" class="panel_upshift">{{.Route}}</a>
|
|
|
|
<span class="panel_compacttext to_right">{{.Count}} views</span>
|
2018-01-04 10:23:33 +00:00
|
|
|
</div>
|
2018-02-19 04:26:01 +00:00
|
|
|
{{else}}<div class="rowitem passive rowmsg">No route view counts could be found in the selected time range</div>{{end}}
|
2018-01-04 10:23:33 +00:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
{{template "footer.html" . }}
|