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

Version Path
hyrax-5.1.0.pre.beta1 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-5.0.4 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-5.0.3 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-5.0.2 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-5.0.1 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-5.0.0 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-5.0.0.rc3 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-5.0.0.rc2 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-5.0.0.rc1 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-4.0.0 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-4.0.0.rc3 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-4.0.0.rc2 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-4.0.0.rc1 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-4.0.0.beta2 app/views/hyrax/dashboard/_repository_growth.html.erb
hyrax-4.0.0.beta1 app/views/hyrax/dashboard/_repository_growth.html.erb