1 <% @title = t 'redaction.edit.title' %>
3 <% content_for :heading do %>
4 <h1><%= t 'redaction.edit.heading' %></h1>
7 <%= form_for(@redaction) do |f| %>
8 <%= f.error_messages %>
11 <%= f.label :title, t('redaction.edit.title') %><br />
12 <%= f.text_field :title %>
15 <%= f.label :description, t('redaction.edit.description') %><br />
16 <%= richtext_area :redaction, :description, :cols => 80, :rows => 20, :format => @redaction.description_format %>
19 <%= f.submit t('redaction.edit.submit') %>