-<% if current_user and current_user.moderator? %>
-<div class="buttons">
- <%= button_to t('.edit'), edit_redaction_path(@redaction), :method => :get %></td>
- <%= button_to t('.destroy'), @redaction, :method => "delete", :remote => true, :data => { :confirm => t('.confirm') } %>
+<% if can?(:edit, Redaction) || can?(:destroy, Redaction) %>
+<div>
+ <% 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 %>