Sha256: 7d45790f0080417429b0a463d8383aa1689017891d84874772b4ace67fcf8515

Contents?: true

Size: 1.19 KB

Versions: 15

Compression:

Stored size: 1.19 KB

Contents

<div class="card">
  <div class="card-header">
    <%= t('.title') %>
  </div>
  <div class="card-body">
    <div id="dashboard-resource-types" aria-hidden="true" style="height: 200px">
      <% @resource_types = Hyrax::Statistic.resource_types %>
      <script>
        Morris.Donut({
            element: 'dashboard-resource-types',
            data: [
              <% @resource_types.each do |row| %>
                { label: "<%= row[0] %>", value: <%= row[1].to_i %> },
              <% end %>
            ],  
            colors: ['#001219','#005f73','#0a9396','#94d2bd','#e9d8a6','#ee9b00','#ca6702','#bb3e03','#ae2012','#9b2226'],
            gridTextSize: '12px',
            resize: true
          });
      </script>
    </div>
                      
    <table aria-label="<%= t('.title') %>" class="table table-striped sr-only text-left">
      <thead>
        <tr>
          <th><%= t('.resource_type') %></th>
          <th><%= t('.count') %></th>
        </tr>
      </thead>
      <tbody>
        <% @resource_types.each do |row| %>
          <tr>
            <td><%= row[0] %></td>
            <td><%= row[1] %></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/_resource_type_graph.html.erb
hyrax-5.0.4 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-5.0.3 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-5.0.2 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-5.0.1 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-5.0.0 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-5.0.0.rc3 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-5.0.0.rc2 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-5.0.0.rc1 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-4.0.0 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-4.0.0.rc3 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-4.0.0.rc2 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-4.0.0.rc1 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-4.0.0.beta2 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-4.0.0.beta1 app/views/hyrax/dashboard/_resource_type_graph.html.erb