1 <% @title = t('redaction.show.title') %>
2 <h1><%= t('redaction.show.heading', :title => @redaction.title) %></h1>
5 <b><%= t 'redaction.show.user' %></b>
6 <%= link_to(@redaction.user.display_name, {:controller => 'user', :action => 'view', :display_name => @redaction.user.display_name}) %>
9 <b><%= t 'redaction.show.description' %></b>
10 <%= @redaction.description.to_html %>
13 <% if @user and @user.moderator? %>
14 <%= link_to t('redaction.show.edit'), edit_redaction_path(@redaction) %>
15 <%= button_to(t('redaction.show.destroy'), @redaction, :confirm => t('redaction.show.confirm'), :method => "delete", :remote => true) %>