X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/eabc7f330b8eb28db7086a5fa4ca82c2714b18ad..e4277a4b0981e4954ed9501ead7eddfcb0f174ee:/app/views/issues/_comments.html.erb diff --git a/app/views/issues/_comments.html.erb b/app/views/issues/_comments.html.erb index a04022304..6a90dbbff 100644 --- a/app/views/issues/_comments.html.erb +++ b/app/views/issues/_comments.html.erb @@ -1,4 +1,4 @@ -
+
<% comments.each do |comment| %>
@@ -13,13 +13,13 @@
<% end %>
-
-
- <%= 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 %> -
-
- <%= f.submit %> + +
+ <%= 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 %>