Sha256: 818e2210c85c8982ec3319dbdbd6ef45b415bd5c99ec8fb11abb96ef75494eff
Contents?: true
Size: 528 Bytes
Versions: 4
Compression:
Stored size: 528 Bytes
Contents
<h1>Listing User Groups</h1> <table> <tr> <th>Name</th> </tr> <% for user_group in @user_groups %> <tr> <td><%=h user_group.name %></td> <td><%= link_to 'Show', user_group %></td> <td><%= link_to('Edit', edit_user_group_path(user_group)) unless user_group.private_record? %></td> <td><%= link_to('Destroy', user_group, :confirm => 'Are you sure?', :method => :delete) unless user_group.system_assigned? %></td> </tr> <% end %> </table> <br /> <%= link_to 'New User Group', new_user_group_path %>
Version data entries
4 entries across 4 versions & 1 rubygems