Sha256: 69e0a4ec91533a2c907b1d3deedf281f87d6e731abf480f01a0afe328f66d5e5
Contents?: true
Size: 972 Bytes
Versions: 15
Compression:
Stored size: 972 Bytes
Contents
<div class="card"> <div class="card-header"><%= t('.title') %></div> <div class="card-body d-flex justify-content-center"> <div id="dashboard-growth" aria-hidden="true" style="height: 200px"> <% repository_growth = @presenter.repository_growth(@start_date.to_datetime, @end_date.to_datetime).to_json %> <script> //<![CDATA[ Hyrax.statistics.repositoryGrowth = <%== repository_growth %> //]]> </script></div> <table aria-label="<%= t('.title') %>" class="table table-striped sr-only text-left"> <thead> <tr> <th><%= t('.date') %></th> <th><%= t('.works') %></th> <th><%= t('.collections') %></th> </tr> </thead> <tbody> <% JSON.parse(repository_growth).each do |row| %> <tr> <td><%= row["y"] %></td> <td><%= row["a"] %></td> <td><%= row["b"] %></td> </tr> <% end %> </tbody> </table> </div> </div>
Version data entries
15 entries across 15 versions & 1 rubygems