Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <h1>Edit Post</h1>
- <%= form_for @post do |f| %>
- <p>
- <%= f.label :title %><br />
- <%= f.text_field :title %>
- </p>
- <p>
- <%= f.label :content %><br />
- <%= f.text_area :content %>
- </p>
- <p>
- <%= f.submit "Update" %>
- </p>
- <% end %>
- <% @posts.each do |post| %>
- <h2><%= link_to post.title, post %></h2>
- <p><%= post.content %></p>
- <p><%= link_to "Edit", edit_post_path(post) %></p>
- <hr />
- <% end %>
Advertisement
Add Comment
Please, Sign In to add comment