]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/redactions/new.html.erb
Merge remote-tracking branch 'upstream/pull/4720'
[rails.git] / app / views / redactions / new.html.erb
index c714acdbc959945de41dea5ba54c8eb3b1405608..64089b2b09270bf2b12dfc1e29f86eec1e8711c0 100644 (file)
@@ -1,20 +1,10 @@
-<% @title = t 'redaction.new.title' %>
-<h1><%= t 'redaction.new.heading' %></h1>
-
-<%= 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>
+<% @title = t ".title" %>
+<% content_for :heading do %>
+  <h1><%= t ".heading" %></h1>
 <% end %>
 
-
+<%= 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 %>