-<% @title = t('redaction.show.title') %>
+<% @title = t(".title") %>
<% content_for :heading do %>
- <h1><%= t('redaction.show.heading', :title => @redaction.title) %></h1>
+ <h1><%= t(".heading", :title => @redaction.title) %></h1>
<% end %>
<p>
- <b><%= t 'redaction.show.user' %></b>
- <%= link_to(@redaction.user.display_name, {:controller => 'user', :action => 'view', :display_name => @redaction.user.display_name}) %>
+ <b><%= t ".user" %></b>
+ <%= link_to(@redaction.user.display_name, user_path(@redaction.user)) %>
</p>
-<p>
- <b><%= t 'redaction.show.description' %></b>
+<div class="richtext">
+ <b><%= t ".description" %></b>
<%= @redaction.description.to_html %>
-</p>
+</div>
-<% if @user and @user.moderator? %>
-<table>
-<tr>
-<td><%= button_to t('redaction.show.edit'), edit_redaction_path(@redaction), :method => :get %></td>
-<td><%= button_to t('redaction.show.destroy'), @redaction, :method => "delete", :remote => true, :data => { :confirm => t('redaction.show.confirm') } %></td>
-</tr>
-</table>
+<% if can?(:edit, Redaction) || can?(:destroy, Redaction) %>
+<div class="buttons">
+ <% if can?(:edit, Redaction) %>
+ <%= button_to t(".edit"), edit_redaction_path(@redaction), :method => :get %></td>
+ <% end %>
+ <% if can?(:destroy, Redaction) %>
+ <%= button_to t(".destroy"), @redaction, :method => "delete", :remote => true, :data => { :confirm => t(".confirm") } %>
+ <% end %>
+</div>
<% end %>