Sha256: ad035d6b8be57bd5ccadde9401536f549092f0d983370e299c5da3c76cadcafa

Contents?: true

Size: 350 Bytes

Versions: 1

Compression:

Stored size: 350 Bytes

Contents

<h1>Listing posts</h1>

<table>
  <tr>
  </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/rails2_test_app/app/views/posts/index.html.erb