diff --git a/app/views/user_blocks/_navigation.html.erb b/app/views/user_blocks/_navigation.html.erb
index b7cc19ecf..bd389edbf 100644
--- a/app/views/user_blocks/_navigation.html.erb
+++ b/app/views/user_blocks/_navigation.html.erb
@@ -11,6 +11,14 @@
:class => ["nav-link", { :active => action_name == "blocks_on" && current_user == @user }] %>
<% end %>
+ <% on_user = @user || @user_block&.user %>
+ <% if on_user != current_user && on_user&.blocks&.exists? %>
+
+ <%= link_to t(".blocks_on_user", :user => on_user.display_name),
+ user_blocks_on_path(on_user),
+ :class => ["nav-link", { :active => action_name == "blocks_on" }] %>
+
+ <% end %>
<% if current_user&.blocks_created&.exists? %>
<%= link_to t(".blocks_by_me"),
diff --git a/config/locales/en.yml b/config/locales/en.yml
index de2a4f89c..96dd67956 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -2988,6 +2988,7 @@ en:
navigation:
all_blocks: "All Blocks"
blocks_on_me: "Blocks on Me"
+ blocks_on_user: "Blocks on %{user}"
blocks_by_me: "Blocks by Me"
user_mutes:
index: