Sha256: 14a1dc91a6edc0e00d05a8a188d10e9a8af053c1f8f82d2d8db4b0fe4d9c3d0b
Contents?: true
Size: 522 Bytes
Versions: 73
Compression:
Stored size: 522 Bytes
Contents
<h1>Listing Posts</h1> <table> <tr> <th>Title</th> <th>Text</th> <th></th> <th></th> <th></th> </tr> <% @posts.each do |post| %> <tr> <td><%= post.title %></td> <td><%= post.text %></td> <td><%= link_to 'Show', action: :show, id: post.id %></td> <td><%= link_to 'Edit', action: :edit, id: post.id %></td> <td><%= link_to 'Destroy', { action: :destroy, id: post.id }, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </table>
Version data entries
73 entries across 73 versions & 3 rubygems