Sha256: daf6844ff9409947ec128e55c0e5d8d70c500eddc8b2b4dc37226c1d051ec2aa

Contents?: true

Size: 393 Bytes

Versions: 1

Compression:

Stored size: 393 Bytes

Contents

<h1>Listing posts</h1>

<table>
  <tr>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @posts.each do |post| %>
  <tr>
    <td><%= link_to 'Show', post %></td>
    <td><%= link_to 'Edit', edit_post_path(post) %></td>
    <td><%= link_to 'Destroy', post, :confirm => 'Are you sure?', :method => :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New Post', new_post_path %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reflexive-0.0.4 spec/test_apps/rails3_test_app/app/views/posts/index.html.erb