Sha256: 42d7546ec45c678247a33057084d5a7e3ce9cafef7cdfd0d343a6d50dd034eab
Contents?: true
Size: 491 Bytes
Versions: 1
Compression:
Stored size: 491 Bytes
Contents
<h1>Listing pages</h1> <table> <tr> <th>Title</th> <th>Article</th> <th></th> <th></th> <th></th> </tr> <% @pages.each do |page| %> <tr> <td><%= page.title %></td> <td><%= page.article %></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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
imperavi-rails-0.0.2.beta | spec/dummy/app/views/pages/index.html.erb |