]> git.openstreetmap.org Git - rails.git/commitdiff
Convert issue comments to use bootstrap
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 27 Jan 2021 17:30:17 +0000 (17:30 +0000)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 27 Jan 2021 17:50:07 +0000 (17:50 +0000)
The reassign checkbox could be simplified in future by changing the expected parameter in the controller

app/views/issues/_comments.html.erb

index a0402230421ad894ee674fd4758bb4baf18b68ce..6a90dbbff49c0bf1841c93e6848155f31b22d573 100644 (file)
@@ -1,4 +1,4 @@
-<div class="issue-comments">
+<div>
   <% comments.each do |comment| %>
     <div class="comment">
       <div class="float-left">
     <hr>
   <% end %>
 </div>
-<br />
-<div class="comment standard-form">
-  <%= form_for @new_comment, :url => issue_comments_path(@issue) do |f| %>
-  <%= richtext_area :issue_comment, :body, :cols => 10, :rows => 8, :required => true %>
-  <%= label_tag :reassign, t(".reassign_param") %> <%= check_box_tag :reassign, true %>
-  <br />
-  <br />
-  <%= f.submit %>
+
+<div>
+  <%= bootstrap_form_for @new_comment, :url => issue_comments_path(@issue) do |f| %>
+    <%= f.richtext_field :body, :cols => 80, :rows => 20, :hide_label => true %>
+    <%= f.form_group do %>
+      <%= f.check_box :reassign, { :label => t(".reassign_param"), :id => "reassign", :name => "reassign", :checked => false }, true, false %>
+    <% end %>
+    <%= f.primary %>
   <% end %>
 </div>