X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2f9291ba5764fe104264ae7e3b6a361e11212e8b..HEAD:/app/views/redactions/new.html.erb diff --git a/app/views/redactions/new.html.erb b/app/views/redactions/new.html.erb index e6838073d..64089b2b0 100644 --- a/app/views/redactions/new.html.erb +++ b/app/views/redactions/new.html.erb @@ -1,20 +1,10 @@ -<% @title = t '.title' %> +<% @title = t ".title" %> <% content_for :heading do %> -

<%= t '.heading' %>

+

<%= t ".heading" %>

<% end %> -<%= form_for(@redaction) do |f| %> - <%= f.error_messages %> - -

- <%= f.label :title, t('.title') %>
- <%= f.text_field :title %> -

-

- <%= f.label :description, t('.description') %>
- <%= richtext_area :redaction, :description, :cols => 80, :rows => 20, :format => @redaction.description_format %> -

-

- <%= f.submit t('.submit') %> -

+<%= 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 %>