index.html.erb
26 lines
| 668 B
| text/plain
|
TextLexer
|
r2755 | <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' %>"> | ||||
|
r7819 | <td><%= link_to h(group), edit_group_path(group) %></td> | ||
|
r2755 | <td align="center"><%= group.users.size %></td> | ||
|
r9754 | <td class="buttons"><%= delete_link group %></td> | ||
|
r2755 | </tr> | ||
<% end %> | ||||
|
r11383 | </tbody> | ||
|
r2755 | </table> | ||
<% else %> | ||||
<p class="nodata"><%= l(:label_no_data) %></p> | ||||
<% end %> | ||||