1 <% @page_title = _("Statistics") -%>
3 <h2><%= _("Search Statistics:") %></h2>
5 <h3><%= _("Top searches:") %></h3>
8 <% top = @top_searches -%>
9 <% top.each do |item| -%>
10 <li><%= h item[:query] %> (<%= h item[:count] %>)</li>
14 <h3><%= _("Top searches without hits:") %></h3>
17 <% top = @failed_searches -%>
18 <% top.each do |item| -%>
19 <li><%= h item[:query] %> (<%= h item[:count] %>)</li>
24 <h2><%= _("Download Statistics:") %></h2>
26 <h3><%= _("Top downloads:") %></h3>
29 <% top = top_downloads -%>
30 <% top.each do |item| -%>
31 <li><%= h item[:query] %> (<%= h item[:count] %>)</li>