summaryrefslogtreecommitdiff
path: root/app/views/blogposts/edit.html.erb
blob: 25da32422ba9d04ae9707aac27b2d1f133cb2d69 (plain)
1
2
3
4
5
6
7
8
9
10
<% title "Edit News: #{@post.title}" %>

<h1>Edit post</h1>
<%= form_for @post do |f|%>
  <%= f.text_field :title %>
  <%= render partial: "md_editor", locals: {name: "blogpost[content]", content: @post.content} %>
  <p><%= f.submit "Update Post", class: "btn blue left" %></p>
<% end %>
<p><%= button_to "Delete post", @post, method: "delete", data: {confirm: "Delete post & comments forever?"}, class: "btn red right" %></p>
<div class="clear"></div>