Sha256: 852d2a1143408cb0eaa367a90ffd75e36130265f37953d3ac8edb11f1ea0cf09

Contents?: true

Size: 1.61 KB

Versions: 180

Compression:

Stored size: 1.61 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 class='ellipsis'><%= _("Updates") %></th>
        <th class='ellipsis'><%= _("Name") %></th>
        <th class='ellipsis'><%= _("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 %>" 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 %>" style="text-align: center"><i class="label label-warning">&nbsp;</i></a>
            <% else %>
              <a href="/host_collections/<%= host_collection.id %>" 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

180 entries across 180 versions & 1 rubygems

Version Path
katello-4.13.1 app/views/dashboard/_host_collection_widget.html.erb
katello-4.13.0 app/views/dashboard/_host_collection_widget.html.erb
katello-4.12.1 app/views/dashboard/_host_collection_widget.html.erb
katello-4.13.0.rc1 app/views/dashboard/_host_collection_widget.html.erb
katello-4.12.0 app/views/dashboard/_host_collection_widget.html.erb
katello-4.12.0.rc3 app/views/dashboard/_host_collection_widget.html.erb
katello-4.12.0.rc2 app/views/dashboard/_host_collection_widget.html.erb
katello-4.12.0.rc1 app/views/dashboard/_host_collection_widget.html.erb
katello-4.11.1 app/views/dashboard/_host_collection_widget.html.erb
katello-4.11.0 app/views/dashboard/_host_collection_widget.html.erb
katello-4.11.0.rc2 app/views/dashboard/_host_collection_widget.html.erb
katello-4.11.0.rc1 app/views/dashboard/_host_collection_widget.html.erb
katello-4.10.0 app/views/dashboard/_host_collection_widget.html.erb
katello-4.9.2 app/views/dashboard/_host_collection_widget.html.erb
katello-4.10.0.rc2 app/views/dashboard/_host_collection_widget.html.erb
katello-4.10.0.rc1 app/views/dashboard/_host_collection_widget.html.erb
katello-4.8.4 app/views/dashboard/_host_collection_widget.html.erb
katello-4.9.1 app/views/dashboard/_host_collection_widget.html.erb
katello-4.8.3 app/views/dashboard/_host_collection_widget.html.erb
katello-4.9.0 app/views/dashboard/_host_collection_widget.html.erb