Sha256: c84d942cba5ad6065361e2a1269114e710aa8d4230f5d04e81c4d062c369d77f

Contents?: true

Size: 925 Bytes

Versions: 5

Compression:

Stored size: 925 Bytes

Contents

<% title _("Installation Media") %>

<% title_actions display_link_if_authorized(_("New Medium"), hash_for_new_medium_path), help_path %>

<table class="table table-bordered table-striped">
  <tr>
    <th><%= sort :name, :as => s_("Medium|Name") %></th>
    <th><%= sort :path, :as => s_("Medium|Path") %></th>
    <th><%= s_("Medium|Os family") %></th>
    <th><%= _("Operating Systems") %></th>
    <th></th>
  </tr>
  <% for medium in @media %>
    <tr>
      <td><%= link_to_if_authorized medium, hash_for_edit_medium_path(:id => medium.id) %></td>
      <td><%= medium.path %></td>
      <td><%= medium.os_family %></td>
      <td><%= medium.operatingsystems.to_sentence %></td>
      <td>
        <%= display_delete_if_authorized hash_for_medium_path(:id => medium), :confirm => _("Delete %s?") % medium.name %>
      </td>
    </tr>
  <% end %>
</table>
<%= page_entries_info @media %>
<%= will_paginate     @media %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
foreman_discovery-1.0.0 test/foreman_app/app/views/media/index.html.erb
foreman_discovery-1.0.0.rc4 test/foreman_app/app/views/media/index.html.erb
foreman_discovery-1.0.0.rc3 test/foreman_app/app/views/media/index.html.erb
foreman_discovery-1.0.0.rc2 test/foreman_app/app/views/media/index.html.erb
foreman_discovery-1.0.0.rc1 test/foreman_app/app/views/media/index.html.erb