X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/288b8e110418a334296275a3edf0a50969d68c75..8551db4c82df7458632d4aa30e9344d60e0774dc:/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 63f882f6c..0770e331f 100644
--- a/app/views/user_blocks/_navigation.html.erb
+++ b/app/views/user_blocks/_navigation.html.erb
@@ -11,4 +11,40 @@
: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_html", :user => tag.span(on_user.display_name, :class => "username text-truncate d-inline-block align-bottom", :dir => "auto")),
+ 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_html", :user => tag.span(by_user.display_name, :class => "username text-truncate d-inline-block align-bottom", :dir => "auto")),
+ user_blocks_by_path(by_user),
+ :class => ["nav-link", { :active => action_name == "blocks_by" }] %>
+
+ <% end %>
+ <% if @user_block&.persisted? %>
+
+ <%= link_to t(".block", :id => @user_block.id),
+ user_block_path(@user_block),
+ :class => "nav-link active" %>
+
+ <% elsif @user_block&.new_record? %>
+
+ <%= link_to t(".new_block"),
+ new_user_block_path,
+ :class => "nav-link active" %>
+
+ <% end %>