Mercurial > hg > soundsoftware-site
comparison .svn/pristine/5b/5b8f6ed809069164f5bc89c601c7d069457406b8.svn-base @ 1464:261b3d9a4903 redmine-2.4
Update to Redmine 2.4 branch rev 12663
author | Chris Cannam |
---|---|
date | Tue, 14 Jan 2014 14:37:42 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1296:038ba2d95de8 | 1464:261b3d9a4903 |
---|---|
1 <div class="contextual"> | |
2 <%= link_to l(:label_group_new), new_group_path, :class => 'icon icon-add' %> | |
3 </div> | |
4 | |
5 <%= title l(:label_group_plural) %> | |
6 | |
7 <% if @groups.any? %> | |
8 <table class="list groups"> | |
9 <thead><tr> | |
10 <th><%=l(:label_group)%></th> | |
11 <th><%=l(:label_user_plural)%></th> | |
12 <th></th> | |
13 </tr></thead> | |
14 <tbody> | |
15 <% @groups.each do |group| %> | |
16 <tr class="<%= cycle 'odd', 'even' %>"> | |
17 <td class="name"><%= link_to h(group), edit_group_path(group) %></td> | |
18 <td><%= group.users.size %></td> | |
19 <td class="buttons"><%= delete_link group %></td> | |
20 </tr> | |
21 <% end %> | |
22 </tbody> | |
23 </table> | |
24 <% else %> | |
25 <p class="nodata"><%= l(:label_no_data) %></p> | |
26 <% end %> |