* luci/statistics: implement timespan selection in public interface
[project/luci.git] / applications / luci-statistics / luasrc / view / public_statistics / graph.htm
index 33678bdcb66d54ce9fd042c20784cc9912f951c0..f3be3ab8a17db25f247a67f2e96c511c913dfb48 100644 (file)
@@ -2,6 +2,15 @@
 
 <h1>Statistik</h1>
 
+<form action="" method="get">
+       <select name="timespan">
+               <% for i, span in ipairs(timespans) do %>
+                       <option<% if span == current_timespan then %> selected="selected"<% end %>><%=span%></option>
+               <% end %>
+       </select>
+       <input type="submit" name="submit" value="<%:stat_showtimespan Display timespan &raquo;%>" />
+</form>
+
 <% for i, img in ipairs(images) do %>
        <img src="/rrdimg/<%=img%>" />
 <% end %>