Sha256: 3491cbfa3c765646c41f6944cdc85fda91475fe4ec79aa6d4825e771cb78c6d8

Contents?: true

Size: 1.58 KB

Versions: 26

Compression:

Stored size: 1.58 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

26 entries across 26 versions & 1 rubygems

Version Path
katello-3.5.0.1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.5.0 app/views/dashboard/_host_collection_widget.html.erb
katello-3.5.0.rc2 app/views/dashboard/_host_collection_widget.html.erb
katello-3.5.0.rc1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.4.5 app/views/dashboard/_host_collection_widget.html.erb
katello-3.4.4 app/views/dashboard/_host_collection_widget.html.erb
katello-3.4.2 app/views/dashboard/_host_collection_widget.html.erb
katello-3.4.1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.4.0.2 app/views/dashboard/_host_collection_widget.html.erb
katello-3.4.0.1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.3.2 app/views/dashboard/_host_collection_widget.html.erb
katello-3.4.0 app/views/dashboard/_host_collection_widget.html.erb
katello-3.4.0.rc2 app/views/dashboard/_host_collection_widget.html.erb
katello-3.4.0.rc1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.3.1.1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.3.1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.3.0.1 app/views/dashboard/_host_collection_widget.html.erb
katello-3.3.0 app/views/dashboard/_host_collection_widget.html.erb
katello-3.3.0.rc2 app/views/dashboard/_host_collection_widget.html.erb
katello-3.3.0.rc1.1 app/views/dashboard/_host_collection_widget.html.erb