Sha256: 58e6884c0bc3e13aff0d51c2f71c1a802e63bd82fe7a4072680ce7fa0fb4794f
Contents?: true
Size: 653 Bytes
Versions: 4
Compression:
Stored size: 653 Bytes
Contents
<h1>Listing pages</h1> <table> <thead> <tr> <th>Name</th> <th>Permalink</th> <th>Content</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @pages.each do |page| %> <tr> <td><%= page.name %></td> <td><%= page.permalink %></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
4 entries across 4 versions & 1 rubygems