<% @title = t 'redaction.edit.title' %>

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

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

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

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

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

<% end %>