X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/effb1b7f4170bb7244c4dfffcbe6134fe00e2bc4..152e3110403c7ac2568298069123e9015d42d8b3:/app/views/reports/new.html.erb diff --git a/app/views/reports/new.html.erb b/app/views/reports/new.html.erb index 6dad7aa43..a29104ae7 100644 --- a/app/views/reports/new.html.erb +++ b/app/views/reports/new.html.erb @@ -1,42 +1,42 @@ <% content_for :heading do %> -

Report <%= reportable_url(@report.issue.reportable) %>

+

<%= t ".title_html", :link => link_to(reportable_title(@report.issue.reportable), reportable_url(@report.issue.reportable)) %>

<% end %> -
- +
+ <%= t(".disclaimer.intro") %> +
<%= form_for(@report) do |f| %> <%= f.error_messages %> -
+
<%= f.fields_for @report.issue do |issue_form| %> <%= issue_form.hidden_field :reportable_id %> <%= issue_form.hidden_field :reportable_type %> <% end %> -
-

<%= t('issues.new.select') %>:

- -
- <% @report_strings_yaml.each do |k,v| %> -
- <%= radio_button_tag :report_type, v[:type].to_s %> - <%= label_tag v[:details].to_s %>
-
- <% end %> -
+
+

<%= t(".select") %>

+
    + <% Report.categories_for(@report.issue.reportable).each do |c| %> +
  • + <%= radio_button :report, :category, c, :required => true %> + <%= label_tag "report_category_#{c}", t(".categories.#{@report.issue.reportable.class.name.underscore}.#{c}_label") %> +
  • + <% end %> +
+
-
- <%= text_area :report, :details, :cols => 20, :rows => 3, placeholder: t('issues.new.details'), required: true %> +
+ <%= text_area :report, :details, :cols => 20, :rows => 5, :placeholder => t(".details") %>
- <%= submit_tag %> + <%= f.submit %>
<% end %>