index.html.erb
25 lines
| 808 B
| text/plain
|
TextLexer
|
r2755 | <div class="contextual"> | ||
<%= link_to l(:label_group_new), new_group_path, :class => 'icon icon-add' %> | ||||
</div> | ||||
|
r11819 | <%= title l(:label_group_plural) %> | ||
|
r2755 | <% 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| %> | ||||
|
r13053 | <tr id="group-<%= group.id %>" class="<%= cycle 'odd', 'even' %> <%= "builtin" if group.builtin? %>"> | ||
|
r13661 | <td class="name"><%= link_to group, edit_group_path(group) %></td> | ||
|
r13053 | <td class="user_count"><%= (@user_count_by_group_id[group.id] || 0) unless group.builtin? %></td> | ||
<td class="buttons"><%= delete_link group unless group.builtin? %></td> | ||||
|
r2755 | </tr> | ||
<% end %> | ||||
|
r11383 | </tbody> | ||
|
r2755 | </table> | ||
<% else %> | ||||
<p class="nodata"><%= l(:label_no_data) %></p> | ||||
<% end %> | ||||