Sha256: 892b1d97d4e70dac916b5834b30a80578c4c2281cf532c66feedf8d8478d620b
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
<table class="<%= table_css_classes('table-two-pane table-fixed') %>"> <tr> <th class="col-md-4"><%= sort :title %></th> <th class="col-md-5"><%= sort :filename %></th> <th class="col-md-2"><%= sort :created_at %></th> <th class="col-md-1"><%= _('Actions') %></th> </tr> <% for content in @contents %> <tr> <td class="ellipsis"><%= link_to_if_authorized content.title, hash_for_edit_scap_content_path(:id => content.id) %></td> <td class="ellipsis"><%= content.original_filename %></td> <td> <%= date_time_relative_value(content.created_at.getlocal) %> </td> <td> <%= action_buttons( display_link_if_authorized(_("Download"), hash_for_scap_content_path(:id => content.id), :data => { :no_turbolink => true }), display_delete_if_authorized(hash_for_scap_content_path(:id => content.id), :confirm => _("Delete scap content %s?") % content.title) ) %> </td> </tr> <% end %> </table> <%= will_paginate_with_info @contents %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
foreman_openscap-1.0.1 | app/views/scap_contents/_list.html.erb |
foreman_openscap-1.0.0 | app/views/scap_contents/_list.html.erb |