<% @title = t(".title") %> <% content_for :heading do %>

<%= t(".heading", :title => @redaction.title) %>

<% end %>

<%= t ".user" %> <%= link_to(@redaction.user.display_name, user_path(@redaction.user)) %>

<%= t ".description" %> <%= @redaction.description.to_html %>
<% if current_user and current_user.moderator? %>
<%= button_to t(".edit"), edit_redaction_path(@redaction), :method => :get %> <%= button_to t(".destroy"), @redaction, :method => "delete", :remote => true, :data => { :confirm => t(".confirm") } %>
<% end %>