Project

General

Profile

Download (1.11 KB) Statistics
| Branch: | Tag: | Revision:
<% title _("Operating systems") %>
<% title_actions display_link_if_authorized(_("New Operating system"), hash_for_new_operatingsystem_path) %>

<table class="table table-bordered table-striped table-two-pane">
<tr>
<th><%= sort :name, :as => s_("Operatingsystem|Name") %></th>
<th><%= _("Hosts") %></th>
<th></th>
</tr>
<% for operatingsystem in @operatingsystems %>
<tr>
<td><%= link_to_if_authorized(os_name(operatingsystem), hash_for_edit_operatingsystem_path(:id => operatingsystem.id).merge(:auth_object => operatingsystem, :authorizer => authorizer)) %></td>
<td class="ra"><%= link_to @host_counter[operatingsystem.id] || 0, hosts_path(:search => "os = #{operatingsystem.name}") %></td>
<td class="ra">
<%= display_delete_if_authorized hash_for_operatingsystem_path(:id => operatingsystem).merge(:auth_object => operatingsystem, :authorizer => authorizer),
:confirm => _("Delete %s?") % operatingsystem.fullname %>
</td>
</tr>
<% end %>
</table>

<%= page_entries_info @operatingsystems %>
<%= will_paginate @operatingsystems %>
(5-5/6)