Sha256: 6ce4e37466eaad753ea7b360704de865478e134bf5c90e8a6ccde00bdd44bc7e
Contents?: true
Size: 883 Bytes
Versions: 11
Compression:
Stored size: 883 Bytes
Contents
<div class="card"> <div class="card-header"> <h4><%= t('.title') %></h4> </div> <div class="card-body"> <table class="table table-striped"> <thead> <tr> <th> </th> <th></th> <th><%= t('.total_downloads') %> (YTD)</th> </tr> </thead> <tbody> <% @files.each do |file| %> <% @file_sizes = [] %> <% f = SolrDocument.find(file) %> <% if f %> <% @file_sizes.push(f.file_size) %> <tr> <td><%= f %></td> <td><%= f.id %></td> <td><%= Hyrax::Analytics.daily_events_for_id(@document.id, 'file_set_in_work_download').all %></td> </tr> <% end %> <% end %> </tbody> </table> </div> <div class="card-footer"> <div class="float-right"> <%= paginate @files %> </div> </div> </div>
Version data entries
11 entries across 11 versions & 1 rubygems