Sha256: ad6f9a11f6544d14edd91469766838e68d99d28462ad3b122ea3617cb845177c
Contents?: true
Size: 699 Bytes
Versions: 15
Compression:
Stored size: 699 Bytes
Contents
<h1>Listing contents</h1> <p><%= will_paginate @contents %></p> <table> <tr> <% for column in Content.content_columns %> <th><%= column.human_name %></th> <% end %> </tr> <% for content in @contents %> <tr> <% for column in Content.content_columns %> <td><%=h content.send(column.name) %></td> <% end %> <td><%= link_to 'Show', :action => 'show', :id => content %></td> <td><%= link_to 'Edit', :action => 'edit', :id => content %></td> <td><%= link_to 'Destroy', { :action => 'destroy', :id => content }, :confirm => 'Are you sure?' %></td> </tr> <% end %> </table> <p><%= will_paginate @contents %></p> <p><%= link_to 'New content', :action => 'new' %></p>
Version data entries
15 entries across 15 versions & 4 rubygems