X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/40da695cfd1a3b35539bc061146dbde12bb6eca7..6094a97ce6297d390e5bbf733f5c2b4cc6b2076c:/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 a84ba1339..0770e331f 100644
--- a/app/views/user_blocks/_navigation.html.erb
+++ b/app/views/user_blocks/_navigation.html.erb
@@ -14,7 +14,7 @@
<% 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),
+ <%= 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" }] %>
@@ -29,9 +29,22 @@
<% 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),
+ <%= 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 %>