Sha256: 0bc563ac425e43039edac0c9443ea1cd55710caa27f011e39b5b278a288d77a0
Contents?: true
Size: 491 Bytes
Versions: 13
Compression:
Stored size: 491 Bytes
Contents
<h1>Listing pages</h1> <table> <tr> <th>Title</th> <th>Content</th> <th></th> <th></th> <th></th> </tr> <% @pages.each do |page| %> <tr> <td><%= page.title %></td> <td><%= page.content %></td> <td><%= link_to 'Show', page %></td> <td><%= link_to 'Edit', edit_page_path(page) %></td> <td><%= link_to 'Destroy', page, confirm: 'Are you sure?', method: :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Page', new_page_path %>
Version data entries
13 entries across 13 versions & 1 rubygems