X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2c7bc3649367bb7f1f75e8ed78c50464645b87cc..e9ad6d852c437a00e6cf9f0f529525a3b33d9901:/app/views/redactions/edit.html.erb diff --git a/app/views/redactions/edit.html.erb b/app/views/redactions/edit.html.erb index fe85d0756..aff2af919 100644 --- a/app/views/redactions/edit.html.erb +++ b/app/views/redactions/edit.html.erb @@ -1,21 +1,21 @@ -<% @title = t '.title' %> +<% @title = t ".title" %> <% content_for :heading do %> -

<%= t '.heading' %>

+

<%= t ".heading" %>

<% end %> -<%= form_for(@redaction) do |f| %> +<%= form_for(@redaction, :html => { :class => "standard-form" }) do |f| %> <%= f.error_messages %>

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

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

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

<% end %>