Project

General

Profile

Download (844 Bytes) Statistics
| Branch: | Tag: | Revision:
<% title "User Groups" %>

<% title_actions display_link_if_authorized("New Usergroup", hash_for_new_usergroup_path) %>

<table class="table table-bordered table-striped">
<tr>
<th>Name</th>
<th>Users</th>
<th>User Groups</th>
<th></th>
</tr>
<% for usergroup in @usergroups %>
<tr class="<%= cycle("even", "odd") -%>">
<td><%= link_to_if_authorized h(usergroup.name), hash_for_edit_usergroup_path(:id => usergroup.id) %></td>
<td><%= h usergroup.users.map(&:login).to_sentence %></td>
<td><%= h usergroup.usergroups.map(&:name).to_sentence %></td>
<td>
<%= display_delete_if_authorized hash_for_usergroup_path(:id => usergroup), :confirm => "Delete #{usergroup.name}?" %>
</td>
</tr>
<% end %>
</table>
<%= page_entries_info @usergroups %>
<%= will_paginate @usergroups %>
(3-3/4)