X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b15a8c73d9c555243952d300e19d6d4127843f19..2a6f78747e2013a1e606f9bc08b39f9c392d154a:/app/views/redactions/edit.html.erb?ds=inline diff --git a/app/views/redactions/edit.html.erb b/app/views/redactions/edit.html.erb index fe85d0756..e9b5beaac 100644 --- a/app/views/redactions/edit.html.erb +++ b/app/views/redactions/edit.html.erb @@ -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 %>