Sha256: 32368a2609fd2575ab9cac5114dafbbe9fb7246d1e16686cc0fe330a987e4382

Contents?: true

Size: 1.2 KB

Versions: 11

Compression:

Stored size: 1.2 KB

Contents

<%= cache current_exhibit, expires_in: 1.hour do %>
<% if Spotlight::Engine.config.analytics_provider and Spotlight::Engine.config.analytics_provider.enabled? %>
  <h3><%= t :'.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 %>
<% end %>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
blacklight-spotlight-0.8.2 app/views/spotlight/dashboards/_analytics.html.erb
blacklight-spotlight-0.8.1 app/views/spotlight/dashboards/_analytics.html.erb
blacklight-spotlight-0.8.0 app/views/spotlight/dashboards/_analytics.html.erb
blacklight-spotlight-0.7.2 app/views/spotlight/dashboards/_analytics.html.erb
blacklight-spotlight-0.7.1 app/views/spotlight/dashboards/_analytics.html.erb
blacklight-spotlight-0.7.0 app/views/spotlight/dashboards/_analytics.html.erb
blacklight-spotlight-0.6.0 app/views/spotlight/dashboards/_analytics.html.erb
blacklight-spotlight-0.5.0 app/views/spotlight/dashboards/_analytics.html.erb
blacklight-spotlight-0.4.1 app/views/spotlight/dashboards/_analytics.html.erb
blacklight-spotlight-0.3.1 app/views/spotlight/dashboards/_analytics.html.erb
blacklight-spotlight-0.3.0 app/views/spotlight/dashboards/_analytics.html.erb