Sha256: 478f995fb64962b3f9255665e8c588b5bf6a15c6df30f698a562adf2eaa6a071

Contents?: true

Size: 1.07 KB

Versions: 14

Compression:

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

14 entries across 14 versions & 1 rubygems

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