% @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 can?(:edit, Redaction) || can?(:destroy, Redaction) %>
<% if can?(:edit, Redaction) %>
<%= link_to t(".edit"), edit_redaction_path(@redaction), :class => "btn btn-outline-primary" %>
<% end %>
<% if can?(:destroy, Redaction) %>
<%= link_to t(".destroy"), @redaction, :method => "delete", :class => "btn btn-outline-danger", :remote => true, :data => { :confirm => t(".confirm") } %>
<% end %>
<% end %>