1 <% @title = t 'redaction.new.title' %>
 
   2 <% content_for :heading do %>
 
   3   <h1><%= t 'redaction.new.heading' %></h1>
 
   6 <%= form_for(@redaction) do |f| %>
 
   7   <%= f.error_messages %>
 
  10     <%= f.label :title, t('redaction.new.title') %><br />
 
  11     <%= f.text_field :title %>
 
  14     <%= f.label :description, t('redaction.new.description') %><br />
 
  15     <%= richtext_area :redaction, :description, :cols => 80, :rows => 20, :format => @redaction.description_format %>
 
  18     <%= f.submit t('redaction.new.submit') %>