- <div class='form-row'>
- <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." %>
+
+ <div class='form-row' style='width:600px'>
+ <p><%= t('issues.new.select') %>:</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 %>
+
+ <%= text_area :report, :details, :cols => 20, :rows => 3, placeholder: t('issues.new.details'), required: true %>