Sha256: c29a4fdb0dd9ba31c5ba7b796d6eb5ef7310be2d61c4b6a2b5c1b4417526af57

Contents?: true

Size: 1.1 KB

Versions: 34

Compression:

Stored size: 1.1 KB

Contents

<h4 class="header">
  <%= _("Sync Overview") %>
</h4>

<% organizations = Organization.current.present? ? [Organization.current] : User.current.allowed_organizations %>
<% products = Katello::Product.includes(:provider => [:organization]).in_orgs(organizations).syncable_content.syncable %>
<% products = products.select { |product| product.sync_status.key?(:start_time) } %>
<% products = products.sort { |a,b| b.sync_status[:start_time] <=> a.sync_status[:start_time] } %>
<% products = products[0...6] %>

<% if products.empty? %>
  <p class="ca"><%= _("No recently synced products") %></p>
<% else %>
  <table class="table table-fixed table-striped table-bordered">
    <thead>
      <tr>
        <th><%= _("Product") %></th>
        <th><%= _("Status") %></th>
        <th><%= _("Finished") %></th>
      </tr>
    </thead>
    <tbody>
      <% products.each do |product| %>
        <tr>
          <td class='ellipsis'><%= product.name %></td>
          <td><%= product.sync_status[:state] %></td>
          <td><%= product.sync_status[:finish_time] %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
<% end %>

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
katello-3.7.0.rc1 app/views/dashboard/_sync_widget.html.erb
katello-3.5.2 app/views/dashboard/_sync_widget.html.erb
katello-3.6.0 app/views/dashboard/_sync_widget.html.erb
katello-3.6.0.1.rc2 app/views/dashboard/_sync_widget.html.erb
katello-3.6.0.rc2 app/views/dashboard/_sync_widget.html.erb
katello-3.6.0.rc1 app/views/dashboard/_sync_widget.html.erb
katello-3.5.1.1 app/views/dashboard/_sync_widget.html.erb
katello-3.5.1 app/views/dashboard/_sync_widget.html.erb
katello-3.5.0.1 app/views/dashboard/_sync_widget.html.erb
katello-3.5.0 app/views/dashboard/_sync_widget.html.erb
katello-3.5.0.rc2 app/views/dashboard/_sync_widget.html.erb
katello-3.5.0.rc1 app/views/dashboard/_sync_widget.html.erb
katello-3.4.5 app/views/dashboard/_sync_widget.html.erb
katello-3.4.4 app/views/dashboard/_sync_widget.html.erb
katello-3.4.2 app/views/dashboard/_sync_widget.html.erb
katello-3.4.1 app/views/dashboard/_sync_widget.html.erb
katello-3.4.0.2 app/views/dashboard/_sync_widget.html.erb
katello-3.4.0.1 app/views/dashboard/_sync_widget.html.erb
katello-3.3.2 app/views/dashboard/_sync_widget.html.erb
katello-3.4.0 app/views/dashboard/_sync_widget.html.erb