Files
danbooru/app/views/user_feedbacks/new.html.erb
evazion bbe32f5e5d feedbacks: update messaging about negative feedbacks.
Update wording about negative feedbacks on the new feedback page, and on the Dmail you receive when
you receive a negative feedback.
2022-11-20 17:10:20 -06:00

30 lines
1.3 KiB
Plaintext

<div id="c-user-feedbacks">
<div id="a-new" class="fixed-width-container">
<h1>New User Feedback</h1>
<div class="fixed-width-container">
<p>Before giving a user negative feedback, you must communicate with them privately first to tell them what
they're doing wrong and how to improve. A negative feedback should only be given after they've been warned first,
unless the user is deliberately breaking the <%= link_to_wiki "site rules", "help:community rules" %>, such as engaging
in intentional vandalism or ban evasion.</p>
<p>A neutral feedback can be given for less serious offenses, or as an initial warning before giving a negative.</p>
<p>Please consult <%= link_to_wiki "help:user records" %> for more information on giving user feedbacks.</p>
</div>
<div id="preview">
</div>
<%= edit_form_for(@user_feedback) do |f| %>
<%= f.input :user_name, :label => "User", :input_html => { value: @user_feedback.user.try(:name), data: { autocomplete: "user" } } %>
<%= f.input :category, :collection => ["positive", "neutral", "negative"], :include_blank => false %>
<%= f.input :body, as: :dtext %>
<%= f.button :submit, "Submit" %>
<%= dtext_preview_button "user_feedback_body" %>
<% end %>
</div>
</div>
<%= render "secondary_links" %>