Sha256: 6639825701128e4a355499ea6a4811be0c0b62c8377504510feca49d212d01bb

Contents?: true

Size: 1.23 KB

Versions: 6

Compression:

Stored size: 1.23 KB

Contents

<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title"><%= t('.title') %></h3>
  </div>
  <div class="panel-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

6 entries across 6 versions & 1 rubygems

Version Path
hyrax-3.6.0 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-3.5.0 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-3.4.2 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-3.4.1 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-3.4.0 app/views/hyrax/dashboard/_resource_type_graph.html.erb
hyrax-3.3.0 app/views/hyrax/dashboard/_resource_type_graph.html.erb