18 lines
684 B
Plaintext
18 lines
684 B
Plaintext
<div id="detailed-rejection-dialog" title="Detailed Rejection" style="display: none;">
|
|
<%= form_tag(moderator_post_disapproval_path, :class => "simple_form", :id => "detailed-rejection-form") do %>
|
|
<%= hidden_field_tag "post_id", "x" %>
|
|
|
|
<p>You can supply a short message to the uploader explaining why you rejected this upload.</p>
|
|
|
|
<div class="input">
|
|
<label>Reason</label>
|
|
<%= select_tag "reason", options_for_select([["Breaks Rules", "breaks_rules"], ["Poor Quality", "poor_quality"], ["No Interest", "disinterest"]]) %>
|
|
</div>
|
|
|
|
<div class="input">
|
|
<label>Message</label>
|
|
<%= text_field_tag "message" %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|