X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/15b104f4ff4614aa78c01180b6a9b89dd5a1400f..6c1f535d5fdd84498f40a0d9e5a6af746a66bbed:/app/views/redactions/edit.html.erb?ds=sidebyside
diff --git a/app/views/redactions/edit.html.erb b/app/views/redactions/edit.html.erb
index 2dd63c9cb..aff2af919 100644
--- a/app/views/redactions/edit.html.erb
+++ b/app/views/redactions/edit.html.erb
@@ -1,22 +1,21 @@
-<% @title = t 'redaction.edit.title' %>
+<% @title = t ".title" %>
<% content_for :heading do %>
- <h1><%= t 'redaction.edit.heading' %></h1>
+ <h1><%= t ".heading" %></h1>
<% end %>
-<%= form_for(@redaction) do |f| %>
+<%= form_for(@redaction, :html => { :class => "standard-form" }) do |f| %>
<%= f.error_messages %>
<p>
- <%= f.label :title, t('redaction.edit.title') %><br />
+ <%= f.label :title, t(".title") %><br />
<%= f.text_field :title %>
</p>
<p>
- <%= f.label :description, t('redaction.edit.description') %><br />
+ <%= f.label :description, t(".description") %><br />
<%= richtext_area :redaction, :description, :cols => 80, :rows => 20, :format => @redaction.description_format %>
</p>
<p>
- <%= f.submit t('redaction.edit.submit') %>
+ <%= f.submit %>
</p>
<% end %>
-