Sha256: 21f8a6a027a9b198213571b07e30be3d1c88acbab4bb6700d013745acb370214

Contents?: true

Size: 1.54 KB

Versions: 14

Compression:

Stored size: 1.54 KB

Contents

<h4 class="header">
  <%= _("Host Collections") %>
</h4>

<% organizations = Organization.current.present? ? [Organization.current] : User.current.allowed_organizations %>
<% critical, warning, ok = Katello::HostCollection.lists_by_updates_needed(organizations) %>
<% host_collections = (critical + warning + ok)[0..6] %>

<% if host_collections.empty? %>
  <p class="ca"><%= _("No host collections found.") %></p>
<% else %>
  <table class="table table-fixed table-striped table-bordered">
    <thead>
      <tr>
        <th>Updates</th>
        <th>Name</th>
        <th>Content Hosts</th>
      </tr>
    </thead>
    <tbody>
      <% host_collections.each do |host_collection| %>
        <tr>
          <td>
            <% if host_collection.security_updates? %>
              <a href="/host_collections/<%= host_collection.id %>/actions" style="text-align: center"><i class="label label-danger">&nbsp;</i></a>
            <% elsif host_collection.bugzilla_updates? || host_collection.enhancement_updates? %>
              <a href="/host_collections/<%= host_collection.id %>/actions" style="text-align: center"><i class="label label-warning">&nbsp;</i></a>
            <% else %>
              <a href="/host_collections/<%= host_collection.id %>/actions" style="text-align: center"><i class="label label-success">&nbsp;</i></a>
            <% end %>
          </td>
          <td class='ellipsis'><%= host_collection.name %></td>
          <td style="text-align: right"><%= host_collection.hosts.length %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
<% end %>

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
katello-3.2.0.rc1.1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.2.0.rc1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.1.0.1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.1.0 app/views/dashboard/_host_collection_widget.html.erb
katello-3.1.0.rc2.1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.0.2 app/views/dashboard/_host_collection_widget.html.erb
katello-3.1.0.rc1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.0.1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.0.0 app/views/dashboard/_host_collection_widget.html.erb
katello-3.0.0.rc7 app/views/dashboard/_host_collection_widget.html.erb
katello-3.0.0.rc5 app/views/dashboard/_host_collection_widget.html.erb
katello-3.0.0.rc4 app/views/dashboard/_host_collection_widget.html.erb
katello-3.0.0.rc3 app/views/dashboard/_host_collection_widget.html.erb
katello-3.0.0.rc2 app/views/dashboard/_host_collection_widget.html.erb