X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/288b8e110418a334296275a3edf0a50969d68c75..0babf982564e1dd1e096cbae09d62436729f703a:/app/views/user_blocks/_navigation.html.erb?ds=sidebyside
diff --git a/app/views/user_blocks/_navigation.html.erb b/app/views/user_blocks/_navigation.html.erb
index 63f882f6c..061989586 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", :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 %>
+ <% 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 %>