Sha256: ade2520e8c5af42d4b65812315a7da7f43bf76632d8e16dd55151d666c4cb100
Contents?: true
Size: 569 Bytes
Versions: 6
Compression:
Stored size: 569 Bytes
Contents
<h1>Listing pages</h1> <table> <thead> <tr> <th>Name</th> <th>Content</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @pages.each do |page| %> <tr> <td><%= page.name %></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, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Page', new_page_path %>
Version data entries
6 entries across 3 versions & 1 rubygems