]> git.openstreetmap.org Git - rails.git/commitdiff
Remove revoke buttons from block show pages
authorAnton Khorev <tony29@yandex.ru>
Fri, 23 Aug 2024 10:01:20 +0000 (13:01 +0300)
committerAnton Khorev <tony29@yandex.ru>
Fri, 23 Aug 2024 10:01:20 +0000 (13:01 +0300)
app/views/user_blocks/show.html.erb
config/locales/en.yml

index 06275c3f0f94c255b8250351415f8f7bdec6483e..180406c747863f89701ac8e2e282b57fa1e09358 100644 (file)
   <dd class="col-sm-9"><div class="richtext text-break"><%= @user_block.reason.to_html %></div></dd>
 </dl>
 
-<% if current_user && (current_user.id == @user_block.creator_id ||
-                       current_user.id == @user_block.revoker_id) ||
-      can?(:revoke, UserBlock) && @user_block.active? %>
+<% if can?(:edit, @user_block) %>
   <div>
-    <% if can?(:edit, @user_block) %>
-      <%= link_to t(".edit"), edit_user_block_path(@user_block), :class => "btn btn-outline-primary" %>
-    <% end %>
-    <% if can?(:revoke, UserBlock) && @user_block.active? %>
-      <%= link_to t(".revoke"), revoke_user_block_path(@user_block), :class => "btn btn-outline-danger" %>
-    <% end %>
+    <%= link_to t(".edit"), edit_user_block_path(@user_block), :class => "btn btn-outline-primary" %>
   </div>
 <% end %>
index 26182c3eb9ac674ce92f10b148bb5c1f43dd0a1e..33bb0a292a48e79283b57f43263adc1340a445af 100644 (file)
@@ -3013,7 +3013,6 @@ en:
       status: "Status:"
       show: "Show"
       edit: "Edit"
-      revoke: "Revoke!"
       confirm: "Are you sure?"
       reason: "Reason for block:"
       revoker: "Revoker:"