<%= t('.summary_heading') %>
|
<%= @start_date.to_date.strftime("%B %d, %Y") %> through <%= @end_date.to_date.strftime("%B %d, %Y") %> |
<% if @pageviews %>
<%= t('.page_views') %> |
<%= @pageviews.range(@start_date.to_date, @end_date.to_date) %> |
<% end %>
<% if @downloads %>
<%= t('.file_downloads') %> |
<%= @downloads.range(@start_date.to_date, @end_date.to_date) %> |
<% end %>
<% if @uniques %>
<%= t('.unique_visitors') %> |
<%= @uniques.range(@start_date.to_date, @end_date.to_date) %> |
<% end %>
<% if params[:start_date] %>
<% if @top_works %>
<%= render 'top_works' %>
<% end %>
<% if @top_file_set_downloads %>
<%= render 'top_file_set_downloads' %>
<% end %>
<% end %>