Sha256: f64dc89eeaf3081e6e46ae8aba8c77604c7d2d24c954c13070fe4335e48cd24d
Contents?: true
Size: 652 Bytes
Versions: 42
Compression:
Stored size: 652 Bytes
Contents
<h1>Listing groups</h1> <table> <tr> <% for column in Group.content_columns %> <th><%= column.human_name %></th> <% end %> </tr> <% for group in @groups %> <tr> <% for column in Group.content_columns %> <td><%=h group.send(column.name) %></td> <% end %> <td><%= link_to 'Show', :action => 'show', :id => group %></td> <td><%= link_to 'Edit', :action => 'edit', :id => group %></td> <td><%= link_to 'Destroy', { :action => 'destroy', :id => group }, :confirm => 'Are you sure?', :method => :post %></td> </tr> <% end %> </table> <%= will_paginate @groups %> <br /> <%= link_to 'New group', :action => 'new' %>
Version data entries
42 entries across 42 versions & 1 rubygems