X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/15b104f4ff4614aa78c01180b6a9b89dd5a1400f..99af52b4785438f931481f730a91805e1ddf975f:/app/views/redactions/new.html.erb

diff --git a/app/views/redactions/new.html.erb b/app/views/redactions/new.html.erb
index 5004c0e1e..64089b2b0 100644
--- a/app/views/redactions/new.html.erb
+++ b/app/views/redactions/new.html.erb
@@ -1,22 +1,10 @@
-<% @title = t 'redaction.new.title' %>
+<% @title = t ".title" %>
 <% content_for :heading do %>
-  <h1><%= t 'redaction.new.heading' %></h1>
+  <h1><%= t ".heading" %></h1>
 <% end %>
 
-<%= form_for(@redaction) do |f| %>
-  <%= f.error_messages %>
-
-  <p>
-    <%= f.label :title, t('redaction.new.title') %><br />
-    <%= f.text_field :title %>
-  </p>
-  <p>
-    <%= f.label :description, t('redaction.new.description') %><br />
-    <%= richtext_area :redaction, :description, :cols => 80, :rows => 20, :format => @redaction.description_format %>
-  </p>
-  <p>
-    <%= f.submit t('redaction.new.submit') %>
-  </p>
+<%= bootstrap_form_for(@redaction) do |f| %>
+  <%= f.text_field :title %>
+  <%= f.richtext_field :description, :cols => 80, :rows => 20, :format => @redaction.description_format %>
+  <%= f.primary %>
 <% end %>
-
-