2008-07-07 22:00:56 +00:00
|
|
|
<%#
|
2015-01-16 22:38:38 +00:00
|
|
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
2015-01-16 22:46:42 +00:00
|
|
|
Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
|
2015-01-16 22:38:38 +00:00
|
|
|
Licensed to the public under the Apache License 2.0.
|
2008-07-07 22:00:56 +00:00
|
|
|
-%>
|
2015-01-16 22:38:38 +00:00
|
|
|
|
2008-05-25 02:37:39 +00:00
|
|
|
<%+header%>
|
|
|
|
|
2015-10-06 11:29:43 +00:00
|
|
|
<h2 name="content"><%:Statistics%></h2>
|
2008-05-25 02:37:39 +00:00
|
|
|
|
2008-06-03 19:05:34 +00:00
|
|
|
<form action="" method="get">
|
2012-02-19 15:11:23 +00:00
|
|
|
<select name="host">
|
|
|
|
<% for i, host in ipairs(hosts) do %>
|
|
|
|
<option<% if host == current_host then %> selected="selected"<% end %>><%=pcdata(host)%></option>
|
|
|
|
<% end %>
|
|
|
|
</select>
|
|
|
|
<input class="cbi-button cbi-button-apply" type="submit" name="submit" value="<%:Display Host »%>" />
|
2008-06-03 19:05:34 +00:00
|
|
|
<select name="timespan">
|
|
|
|
<% for i, span in ipairs(timespans) do %>
|
|
|
|
<option<% if span == current_timespan then %> selected="selected"<% end %>><%=span%></option>
|
|
|
|
<% end %>
|
|
|
|
</select>
|
2012-02-19 15:11:23 +00:00
|
|
|
<input class="cbi-button cbi-button-apply" type="submit" name="submit" value="<%:Display timespan »%>" />
|
2008-06-03 19:05:34 +00:00
|
|
|
</form>
|
|
|
|
|
2008-07-15 22:37:53 +00:00
|
|
|
<br />
|
|
|
|
<hr />
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<div style="text-align: center">
|
|
|
|
<% for i, img in ipairs(images) do %>
|
2013-12-03 23:58:15 +00:00
|
|
|
<img src="<%=REQUEST_URI%>?img=<%=img%>&host=<%=current_host%>" />
|
2008-07-15 22:37:53 +00:00
|
|
|
<br />
|
|
|
|
<% end %>
|
|
|
|
</div>
|
2008-05-25 02:37:39 +00:00
|
|
|
|
|
|
|
<%+footer%>
|
2012-02-19 15:11:23 +00:00
|
|
|
|