Sha256: e6fcf97da3583a3cae167f6d3791657e8a47f83dab8e4e715ed2f03f950d65bb
Contents?: true
Size: 1.27 KB
Versions: 15
Compression:
Stored size: 1.27 KB
Contents
<h4 class="header"> <%= _("Content Views") %> </h4> <% organizations = Organization.current.present? ? [Organization.current] : User.current.allowed_organizations %> <% histories = Katello::ContentViewHistory.includes(:content_view_version => [:content_view]).includes(:task, :environment).in_organizations(organizations) %> <% histories = histories.readable.limit(6) %> <% if histories.empty? %> <p class="ca"><%= _("No content view history events found.") %></p> <% else %> <table class="table table-fixed table-striped table-bordered"> <thead> <tr> <th><%= _("Content View") %></th> <th><%= _("Task") %></th> <th><%= _("Status") %></th> </tr> </thead> <tbody> <% histories.each do |history| %> <tr> <td class='ellipsis'> <a href="/content_views/<%= history.content_view_version.content_view.id %>/versions/<%= history.content_view_version.id %>/details"> <%= history.content_view_version.content_view.name %> <%= history.content_view_version.version %> </a> </td> <td><%= history.humanized_action %></td> <td><%= history.humanized_status %> on <%= history.updated_at.to_s(:short) %></td> </tr> <% end %> </tbody> </table> <% end %>
Version data entries
15 entries across 15 versions & 1 rubygems