X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d39533cd50d4b25ef5cc5e39fd79ee91c02ecc23..77ab4ef292e5261499efe6b8fee1a25c5719270d:/app/views/user_blocks/show.html.erb diff --git a/app/views/user_blocks/show.html.erb b/app/views/user_blocks/show.html.erb index 7b30d1920..619cd6c3f 100644 --- a/app/views/user_blocks/show.html.erb +++ b/app/views/user_blocks/show.html.erb @@ -26,13 +26,12 @@
<%= @user_block.reason.to_html %>
-<% if @user_block.ends_at > Time.now.getutc && (current_user&.id == @user_block.creator_id || - can?(:revoke, UserBlock)) %> +<% if current_user&.id == @user_block.creator_id || can?(:revoke, UserBlock) && @user_block.active? %>
<% if current_user&.id == @user_block.creator_id %> <%= link_to t(".edit"), edit_user_block_path(@user_block), :class => "btn btn-outline-primary" %> <% end %> - <% if can?(:revoke, UserBlock) %> + <% if can?(:revoke, UserBlock) && @user_block.active? %> <%= link_to t(".revoke"), revoke_user_block_path(@user_block), :class => "btn btn-outline-danger" %> <% end %>