yeyicheng

Untitled

May 6th, 2012
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.28 KB | None | 0 0
  1. <% @posts.each do |post| %>
  2.    <h2><%= link_to post.title, post %></h2>
  3.    <p><%= post.content %></p>
  4.    <p>
  5.       <%= link_to "Edit", edit_post_path(post) %>
  6.       <%= link_to "Delete", post, :confirm => "Delete the post?", :method => :delete %>
  7.    </p>
  8.    <hr />
  9. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment