Files
danbooru/app/views/moderator/post/posts/confirm_delete.html.erb
2013-12-17 12:14:32 -05:00

25 lines
555 B
Plaintext

<h1>Delete Post</h1>
<div>
<%= PostPresenter.preview(@post) %>
</div>
<%= form_tag(delete_moderator_post_post_path, :style => "clear: both;", :class => "simple_form") do %>
<% if @post.parent_id %>
<div class="input">
<label for="move_favorites">
<%= check_box_tag "move_favorites" %>
Move favorites to parent?
</label>
</div>
<% end %>
<div class="input">
<label for="reason">Reason</label>
<%= text_area_tag "reason" %>
</div>
<%= submit_tag "Delete" %>
<%= submit_tag "Cancel" %>
<% end %>