]> git.openstreetmap.org Git - rails.git/commitdiff
Add "Blocks by Me" nav tab to block list/show pages
authorAnton Khorev <tony29@yandex.ru>
Wed, 3 Apr 2024 08:42:49 +0000 (11:42 +0300)
committerAnton Khorev <tony29@yandex.ru>
Wed, 3 Apr 2024 08:51:52 +0000 (11:51 +0300)
app/views/user_blocks/_navigation.html.erb
config/locales/en.yml

index 63f882f6c0dbb779c9ef137f3ed60a2a12766a43..b7cc19ecfeaee5ae5c6bb9416c408c73c98d1b2a 100644 (file)
                   :class => ["nav-link", { :active => action_name == "blocks_on" && current_user == @user }] %>
     </li>
   <% end %>
+  <% if current_user&.blocks_created&.exists? %>
+    <li class="nav-item">
+      <%= link_to t(".blocks_by_me"),
+                  user_blocks_by_path(current_user),
+                  :class => ["nav-link", { :active => action_name == "blocks_by" && current_user == @user }] %>
+    </li>
+  <% end %>
 </ul>
index 72e2ea05c80cbe321d983d958adf834056e5747f..de2a4f89cd6a4c0e7a2e71009bf102cee2fc149a 100644 (file)
@@ -2988,6 +2988,7 @@ en:
     navigation:
       all_blocks: "All Blocks"
       blocks_on_me: "Blocks on Me"
+      blocks_by_me: "Blocks by Me"
   user_mutes:
     index:
       title: "Muted Users"