Sha256: d4bc22c24e970369d465a295eefcba550a14aa71460cbd0cd9aa998a16c02bc3

Contents?: true

Size: 424 Bytes

Versions: 8

Compression:

Stored size: 424 Bytes

Contents

<h1>Listing posts</h1>

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

<% posts.each do |post| %>
  <tr>
    <td><%= post.title %></td>
    <td><%= post.body %></td>
    <td><%= link_to 'Show', post %></td>
    <td><%= link_to 'Edit', edit_post_path(post) %></td>
    <td><%= link_to 'Destroy', post, :method => :delete %></td>
  </tr>
<% end %>
</table>

<br />

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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
focused_controller-2.0.3 test/app/app/views/posts/index.html.erb
focused_controller-2.0.2 test/app/app/views/posts/index.html.erb
focused_controller-2.0.1 test/app/app/views/posts/index.html.erb
focused_controller-2.0.0 test/app/app/views/posts/index.html.erb
focused_controller-1.2.1 test/app/app/views/posts/index.html.erb
focused_controller-1.2.0 test/app/app/views/posts/index.html.erb
focused_controller-1.1.1 test/app/app/views/posts/index.html.erb
focused_controller-1.1.0 test/app/app/views/posts/index.html.erb