Sha256: 9dfe3d66302fa25fddae3e5f0e188228e87a582cdc73bb268f193965c3ed912f

Contents?: true

Size: 496 Bytes

Versions: 1

Compression:

Stored size: 496 Bytes

Contents

<h1>Listing posts</h1>

<table>
  <tr>
    <th>Author</th>
    <th>Text</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @posts.each do |post| %>
  <tr>
    <td><%= post.author_id %></td>
    <td><%= post.text %></td>
    <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
rails-services-0.1.5 test/rails_app_v3/app/views/posts/index.html.erb