_users.html.erb
22 lines
| 709 B
| text/plain
|
TextLexer
|
r13220 | <p><%= link_to l(:label_user_new), new_group_users_path(@group), :remote => true, :class => "icon icon-add" %></p> | ||
|
r2755 | <% if @group.users.any? %> | ||
|
r7157 | <table class="list users"> | ||
<thead><tr> | ||||
<th><%= l(:label_user) %></th> | ||||
<th style="width:15%"></th> | ||||
</tr></thead> | ||||
<tbody> | ||||
<% @group.users.sort.each do |user| %> | ||||
<tr id="user-<%= user.id %>" class="<%= cycle 'odd', 'even' %>"> | ||||
|
r12617 | <td class="name"><%= link_to_user user %></td> | ||
|
r7157 | <td class="buttons"> | ||
|
r9847 | <%= delete_link group_user_path(@group, :user_id => user), :remote => true %> | ||
|
r7157 | </td> | ||
</tr> | ||||
<% end %> | ||||
</tbody> | ||||
</table> | ||||
|
r2755 | <% else %> | ||
|
r7157 | <p class="nodata"><%= l(:label_no_data) %></p> | ||
|
r2755 | <% end %> | ||