-<% @title = t 'redaction.new.title' %>
+<% @title = t ".title" %>
<% content_for :heading do %>
- <h1><%= t 'redaction.new.heading' %></h1>
+ <h1><%= t ".heading" %></h1>
<% end %>
-<%= form_for(@redaction) do |f| %>
+<%= form_for(@redaction, :html => { :class => "standard-form" }) do |f| %>
<%= f.error_messages %>
<p>
- <%= f.label :title, t('redaction.new.title') %><br />
+ <%= f.label :title, t(".title") %><br />
<%= f.text_field :title %>
</p>
<p>
- <%= f.label :description, t('redaction.new.description') %><br />
+ <%= f.label :description, t(".description") %><br />
<%= richtext_area :redaction, :description, :cols => 80, :rows => 20, :format => @redaction.description_format %>
</p>
<p>
- <%= f.submit t('redaction.new.submit') %>
+ <%= f.submit %>
</p>
<% end %>
-
-