X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9519f26241c5715313d82a2d3f9fb3f44210b2c0..851de28303fc9c24d095b9452b862bea618ec0da:/app/views/redactions/new.html.erb diff --git a/app/views/redactions/new.html.erb b/app/views/redactions/new.html.erb new file mode 100644 index 000000000..c714acdbc --- /dev/null +++ b/app/views/redactions/new.html.erb @@ -0,0 +1,20 @@ +<% @title = t 'redaction.new.title' %> +

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

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

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

+

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

+

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

+<% end %> + +