X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/783b5e3729228908d7404ae7404af1023501a906..ad9f0b624728259fbe17f7b631d3efef5a488d3b:/app/views/redactions/show.html.erb diff --git a/app/views/redactions/show.html.erb b/app/views/redactions/show.html.erb index a87cca604..1eb20f16f 100644 --- a/app/views/redactions/show.html.erb +++ b/app/views/redactions/show.html.erb @@ -12,9 +12,13 @@ <%= @redaction.description.to_html %> -<% if current_user and current_user.moderator? %> +<% if can?(:edit, Redaction) || can?(:destroy, Redaction) %>
- <%= button_to t(".edit"), edit_redaction_path(@redaction), :method => :get %> - <%= button_to t(".destroy"), @redaction, :method => "delete", :remote => true, :data => { :confirm => t(".confirm") } %> + <% if can?(:edit, Redaction) %> + <%= button_to t(".edit"), edit_redaction_path(@redaction), :method => :get %> + <% end %> + <% if can?(:destroy, Redaction) %> + <%= button_to t(".destroy"), @redaction, :method => "delete", :remote => true, :data => { :confirm => t(".confirm") } %> + <% end %>
<% end %>