X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/1861bcf640c70def4563c500ae9f6f814ac729c6..9ee3df33bd577c65f08db5f68d301f7e8f34298c:/app/views/user_blocks/_navigation.html.erb
diff --git a/app/views/user_blocks/_navigation.html.erb b/app/views/user_blocks/_navigation.html.erb
index b7cc19ecf..f53f5cf28 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"),
@@ -18,4 +26,19 @@
:class => ["nav-link", { :active => action_name == "blocks_by" && current_user == @user }] %>
<% end %>
+ <% by_user = @user || @user_block&.creator %>
+ <% if by_user != current_user && by_user&.blocks_created&.exists? %>
+
+ <%= link_to t(".blocks_by_user", :user => by_user.display_name),
+ user_blocks_by_path(by_user),
+ :class => ["nav-link", { :active => action_name == "blocks_by" }] %>
+
+ <% end %>
+ <% if @user_block %>
+
+ <%= link_to t(".block", :id => @user_block.id),
+ user_block_path(@user_block),
+ :class => ["nav-link", { :active => action_name == "show" }] %>
+
+ <% end %>