2009-09-12 12:36:46 +04:00
|
|
|
<div class="contextual">
|
|
|
|
<%= link_to l(:label_group_new), new_group_path, :class => 'icon icon-add' %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2><%= l(:label_group_plural) %></h2>
|
|
|
|
|
|
|
|
<% if @groups.any? %>
|
|
|
|
<table class="list groups">
|
|
|
|
<thead><tr>
|
|
|
|
<th><%=l(:label_group)%></th>
|
|
|
|
<th><%=l(:label_user_plural)%></th>
|
|
|
|
<th></th>
|
|
|
|
</tr></thead>
|
|
|
|
<tbody>
|
|
|
|
<% @groups.each do |group| %>
|
|
|
|
<tr class="<%= cycle 'odd', 'even' %>">
|
2011-11-26 21:56:52 +04:00
|
|
|
<td><%= link_to h(group), edit_group_path(group) %></td>
|
2009-09-12 12:36:46 +04:00
|
|
|
<td align="center"><%= group.users.size %></td>
|
2012-07-07 18:36:49 +04:00
|
|
|
<td class="buttons"><%= delete_link group %></td>
|
2009-09-12 12:36:46 +04:00
|
|
|
</tr>
|
|
|
|
<% end %>
|
2013-03-13 03:17:16 +04:00
|
|
|
</tbody>
|
2009-09-12 12:36:46 +04:00
|
|
|
</table>
|
|
|
|
<% else %>
|
|
|
|
<p class="nodata"><%= l(:label_no_data) %></p>
|
|
|
|
<% end %>
|