Sha256: c49801829c49910451c111f09394c3c11e52dbd5d53b28dee2b1eb99a7a7ee21
Contents?: true
Size: 502 Bytes
Versions: 97
Compression:
Stored size: 502 Bytes
Contents
<h1>Listing Content Pages</h1> <table> <tr> <th>Name</th> <th>Title</th> <th>Created At</th> <th>Updated At</th> </tr> <% for content_page in @content_pages %> <tr> <td><%= link_to content_page.name, :action => 'show', :id => content_page.id %></td> <td><%= h content_page.title %></td> <td><%= content_page.created_at %></td> <td><%= content_page.updated_at %></td> </tr> <% end %> </table> <hr/> <p><%= link_to 'New content_page', :action => 'new' %></p>
Version data entries
97 entries across 97 versions & 2 rubygems