X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/288b8e110418a334296275a3edf0a50969d68c75..c9dedd9656ddfdb68ea23ccc41e4f273548a620a:/app/views/user_blocks/_navigation.html.erb?ds=inline
diff --git a/app/views/user_blocks/_navigation.html.erb b/app/views/user_blocks/_navigation.html.erb
index 63f882f6c..a84ba1339 100644
--- a/app/views/user_blocks/_navigation.html.erb
+++ b/app/views/user_blocks/_navigation.html.erb
@@ -11,4 +11,27 @@
: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"),
+ user_blocks_by_path(current_user),
+ :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 %>