Sha256: 6b5c0eec6f00a333199fa58c4d42d4ba0847f699c38c30a234f4081d41d614e7
Contents?: true
Size: 1.09 KB
Versions: 57
Compression:
Stored size: 1.09 KB
Contents
<%= cache current_exhibit, expires_in: 1.hour do %> <h3><%= t :'.monthly_header' %></h3> <table class="table analytics"> <tr> <% Spotlight::Engine.config.analytics_provider.metrics.elements.each do |e| %> <td class="value col-md-3 <%= e %>"><%= current_exhibit.analytics(1.month, exhibit_root_path(current_exhibit)).send(e) %></td> <% end %> </tr> <tfoot> <tr> <% Spotlight::Engine.config.analytics_provider.metrics.elements.each do |e| %> <th><%= t(:".#{e}") %></th> <% end %> </tr> </tfoot> </table> <% page_analytics = current_exhibit.page_analytics(1.month, exhibit_root_path(current_exhibit)) %> <% unless page_analytics.empty? %> <h4><%= t :'.pages.header' %></h4> <table class="table table-striped"> <thead> <tr> <th><%= t(:".pagetitle") %></th> <th><%= t(:".pageviews") %></th> </tr> </thead> <% page_analytics.each do |p| %> <tr> <td><%= link_to p.pageTitle, p.pagePath %></td> <td><%= p.pageviews %></td> </tr> <% end %> </table> <% end %> <% end %>
Version data entries
57 entries across 57 versions & 1 rubygems