blob: dd72b13be82e74d76c8d48c3fe4002f75ae7cf91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<% @title = "Statistics" %>
<h1>Statistics</h1>
<h2>Chart of requests (excluding backpaged)</h2>
<p>
<img src="<%= main_url("/foi-live-creation.png")%>">
</p>
<h2>State of requests (includes backpaged)</h2>
<table>
<% for state, count in @request_by_state %>
<tr> <td><%=state %></td><td><%= count %></td> </tr>
<% end %>
</table>
<h2>Chart of users</h2>
<p>
<img src="<%= main_url("/foi-user-use.png")%>">
</p>
<h2>Tracks by type</h2>
<table>
<% for state, count in @tracks_by_type %>
<tr> <td><%=state %></td><td><%= count %></td> </tr>
<% end %>
</table>
|