##// END OF EJS Templates
Removes duplicate ids (#15485)....
Removes duplicate ids (#15485). git-svn-id: http://svn.redmine.org/redmine/trunk@12657 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r12038:967564cba0bd
r12382:e9689f5fe326
Show More
index.html.erb
26 lines | 663 B | text/plain | TextLexer
<div class="contextual">
<%= link_to l(:label_group_new), new_group_path, :class => 'icon icon-add' %>
</div>
<%= title l(:label_group_plural) %>
<% 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' %>">
<td class="name"><%= link_to h(group), edit_group_path(group) %></td>
<td><%= group.users.size %></td>
<td class="buttons"><%= delete_link group %></td>
</tr>
<% end %>
</tbody>
</table>
<% else %>
<p class="nodata"><%= l(:label_no_data) %></p>
<% end %>