Sha256: db1a71bcdfeeb8debfea2a4350510a4b4d8e19fc561951283a22cd4033d08cde

Contents?: true

Size: 1.14 KB

Versions: 14

Compression:

Stored size: 1.14 KB

Contents

<table class="<%= table_css_classes('table-fixed') %>">
  <tr>
    <th class="col-md-4"><%= sort :name, as: _('Name') %></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>
  <% @tailoring_files.each do |file| %>
    <tr>
      <td class="ellipsis">
        <%= link_to_if_authorized file.name, hash_for_edit_tailoring_file_path(:id => file.id) %>
      </td>
      <td>
        <%= file.original_filename %>
      </td>
      <td>
        <%= date_time_relative_value(file.created_at.getlocal) %>
      </td>
      <td>
        <%= action_buttons(
                display_delete_if_authorized(hash_for_tailoring_file_path(:id => file.id),
                                             :data => {:confirm => _("Delete tailoring file %s?") % file.name}),
                display_link_if_authorized(_("Download"), hash_for_xml_tailoring_file_path(:id => file.id), :data => { :no_turbolink => true })
            ) %>
      </td>
    </tr>
  <% end %>
</table>

<%= will_paginate_with_info @tailoring_files %>

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
foreman_openscap-10.1.0 app/views/tailoring_files/_list.html.erb
foreman_openscap-10.0.3 app/views/tailoring_files/_list.html.erb
foreman_openscap-10.0.2 app/views/tailoring_files/_list.html.erb
foreman_openscap-10.0.1 app/views/tailoring_files/_list.html.erb
foreman_openscap-10.0.0 app/views/tailoring_files/_list.html.erb
foreman_openscap-9.0.4 app/views/tailoring_files/_list.html.erb
foreman_openscap-9.0.3 app/views/tailoring_files/_list.html.erb
foreman_openscap-9.0.2 app/views/tailoring_files/_list.html.erb
foreman_openscap-9.0.1 app/views/tailoring_files/_list.html.erb
foreman_openscap-9.0.0 app/views/tailoring_files/_list.html.erb
foreman_openscap-8.0.0 app/views/tailoring_files/_list.html.erb
foreman_openscap-7.1.1 app/views/tailoring_files/_list.html.erb
foreman_openscap-7.1.0 app/views/tailoring_files/_list.html.erb
foreman_openscap-7.0.0 app/views/tailoring_files/_list.html.erb