- <label class="standard-label"><%= t 'issue.new.message' -%></label>
- <%= 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." %>
+ <p>Select one (or more) reasons for your report:</p>
+
+ <% @report_strings_yaml.each do |k,v| %>
+ <div class="new-report-form">
+ <div class="new-report-checkbox">
+ <%= radio_button_tag :report_type, v[:type].to_s %>
+ </div>
+ <div class="new-report-string">
+ <%= label_tag v[:details].to_s %> <br/>
+ </div>
+ </div>
+ <br/>
+ <% end %>
+
+ <label class="standard-label"><b><%= t 'issue.new.message' %>: </b></label> <br/>
+ <%= text_area :report, :details, :cols => 80, :rows => 20, placeholder: t('issues.new.details'), required: true %>