]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/redactions/edit.html.erb
Merge remote-tracking branch 'upstream/pull/4735'
[rails.git] / app / views / redactions / edit.html.erb
index fe85d0756246f8df0c6e1f18fb7fd9aa335592ba..e9b5beaacde0f636b7a68a1d561147ef02aec6d3 100644 (file)
@@ -1,21 +1,11 @@
-<% @title = t '.title' %>
+<% @title = t ".title" %>
 
 <% content_for :heading do %>
-  <h1><%= t '.heading' %></h1>
+  <h1><%= t ".heading" %></h1>
 <% end %>
 
-<%= form_for(@redaction) do |f| %>
-  <%= f.error_messages %>
-
-  <p>
-    <%= f.label :title, t('.title') %><br />
-    <%= f.text_field :title %>
-  </p>
-  <p>
-    <%= f.label :description, t('.description') %><br />
-    <%= richtext_area :redaction, :description, :cols => 80, :rows => 20, :format => @redaction.description_format %>
-  </p>
-  <p>
-    <%= f.submit t('.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 %>