Files
danbooru/app/views/post_flags/edit.html.erb

16 lines
380 B
Plaintext

<div id="c-post-flags">
<div id="a-edit">
<h1>Edit Flag</h1>
<p>
Editing flag for <%= link_to "post ##{@post_flag.post_id}", @post_flag.post %>.
</p>
<%= edit_form_for(@post_flag) do |f| %>
<%= f.input :reason, as: :dtext %>
<%= f.button :submit, "Submit" %>
<%= dtext_preview_button "post_flag_reason" %>
<% end %>
</div>
</div>