Sha256: caecd93d32da49c19192182913f0f6d5812954a66dbed88a299cab5459da6de4
Contents?: true
Size: 1.12 KB
Versions: 14
Compression:
Stored size: 1.12 KB
Contents
<table class="<%= table_css_classes('table-two-pane table-fixed') %>"> <tr> <th class="col-md-4"><%= sort :title, as: _('Title') %></th> <th class="col-md-5"><%= sort :filename, as: _('File name') %></th> <th class="col-md-2"><%= sort :created_at, as: _('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), :data => {:confirm => _("Delete scap content %s?") % content.title}) ) %> </td> </tr> <% end %> </table> <%= will_paginate_with_info @contents %>
Version data entries
14 entries across 14 versions & 1 rubygems