graph.htm 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <%#
  2. Copyright 2008 Steven Barth <steven@midlink.org>
  3. Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
  4. Licensed to the public under the Apache License 2.0.
  5. -%>
  6. <%+header%>
  7. <h2><a id="content" name="content"><%:Statistics%></a></h2>
  8. <form action="" method="get">
  9. <select name="host">
  10. <% for i, host in ipairs(hosts) do %>
  11. <option<% if host == current_host then %> selected="selected"<% end %>><%=pcdata(host)%></option>
  12. <% end %>
  13. </select>
  14. <input class="cbi-button cbi-button-apply" type="submit" name="submit" value="<%:Display Host »%>" />
  15. <select name="timespan">
  16. <% for i, span in ipairs(timespans) do %>
  17. <option<% if span == current_timespan then %> selected="selected"<% end %>><%=span%></option>
  18. <% end %>
  19. </select>
  20. <input class="cbi-button cbi-button-apply" type="submit" name="submit" value="<%:Display timespan »%>" />
  21. </form>
  22. <br />
  23. <hr />
  24. <br />
  25. <div style="text-align: center">
  26. <% for i, img in ipairs(images) do %>
  27. <% if is_index then %><a href="<%=pcdata(images[img])%>"><% end %>
  28. <img src="<%=REQUEST_URI%>?img=<%=img%>&#38;host=<%=current_host%>" />
  29. <% if is_index then %></a><% end %>
  30. <br />
  31. <% end %>
  32. </div>
  33. <%+footer%>