Sha256: 1e28b6dd506f5c07c6d2f148ccd9e2afd12c53a54ac34a587a060cddc2e3534d
Contents?: true
Size: 632 Bytes
Versions: 42
Compression:
Stored size: 632 Bytes
Contents
<%= paginate(stats, remote: true) -%> <table class="table table-striped index"> <tr> <th><%= t('activerecord.models.manifestation') -%></th> <th><%= t('activerecord.attributes.checkout_stat_has_manifestation.checkouts_count') -%></th> </tr> <%- stats.count(:id).each do |stat| -%> <tr class="line<%= cycle("0", "1") -%>"> <td> <% manifestation = Manifestation.where(id: stat[0]).first %> <%= render 'manifestations/show_index', manifestation: manifestation if manifestation %> </td> <td><%= stat[1] %></td> </tr> <%- end -%> </table> <%= paginate(stats, remote: true) -%>
Version data entries
42 entries across 42 versions & 1 rubygems