X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0c79686f3cef86330d0ab6bbef2a9e2275ac93ac..bab39572a17146d5b6e696f0ba584a89daac10c7:/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 %>