X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0d3a9ed9cb47ce3b89ea9eaffbb589f9a9ff6d22..3af16f6337b52546297e7e09a1aba9b0e1df7e15:/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 2a5e69d0a..72676013e 100644 --- a/app/views/redactions/edit.html.erb +++ b/app/views/redactions/edit.html.erb @@ -1,19 +1,21 @@ -<% @title = t 'redaction.edit.title' %> -

<%= t 'redaction.edit.heading' %>

+<% @title = t ".title" %> + +<% content_for :heading do %> +

<%= t ".heading" %>

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

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

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

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

<% end %> -