X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/683722ed5c1b3224a04c23b4d175a0638964f713..cf4cfc530ae54abee7b6a0dccbc9d4603ab35611:/app/views/issues/new.html.erb diff --git a/app/views/issues/new.html.erb b/app/views/issues/new.html.erb index 2a6cd66f9..499035db6 100644 --- a/app/views/issues/new.html.erb +++ b/app/views/issues/new.html.erb @@ -6,16 +6,73 @@ <%= f.error_messages %>
- <%= f.hidden_field :reportable_id, :value => params[:reportable_id] %> - <%= f.hidden_field :reportable_type, :value => params[:reportable_type] %> - <%= f.hidden_field :user_id, :value => params[:user_id] %> + <%= f.hidden_field :reportable_id %> + <%= f.hidden_field :reportable_type %> + <%= f.hidden_field :reported_user_id %>
+
- - <%= text_area :report, :details, :cols => 80, :rows => 20, placeholder: "Tell us what's wrong! Any information you can give will go on to help moderators a long way." %> +

Select one (or more) reasons for your report:

+ +
+
+ <%= check_box_tag :spam, "[SPAM]" %> +
+
+ <%= label_tag "This #{@issue.reportable.class.name} " + t('issues.report_strings.spam') %>
+
+
+
+ +
+
+ <%= check_box_tag :offensive, "[OFFENSIVE]" %> +
+
+ <%= label_tag "This #{@issue.reportable.class.name} " + t('issues.report_strings.offensive') %>
+
+
+
+ +
+
+ <%= check_box_tag :threat, "[THREAT]" %> +
+
+ <%= label_tag "This #{@issue.reportable.class.name} " + t('issues.report_strings.threat') %>
+
+
+
+ + <% if @issue.reportable.class.name == "User" %> +
+
+ <%= check_box_tag :vandal, "[VANDAL]" %> +
+
+ <%= label_tag "This #{@issue.reportable.class.name} " + t('issues.report_strings.vandal') %>
+
+
+
+ <% end %> + +
+
+ <%= check_box_tag :other, "[OTHER]" %> +
+
+ <%= label_tag t('issues.report_strings.other') %>
+
+
+
+ +
+ <%= text_area :report, :details, :cols => 80, :rows => 20, placeholder: t('issues.new.details'), required: true %>
+
<%= submit_tag %>
+
<% end %> \ No newline at end of file