]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/user_blocks/_navigation.html.erb
Add "Blocks by Me" nav tab to block list/show pages
[rails.git] / app / views / user_blocks / _navigation.html.erb
index 5ca67afe56b86481b6daa52ff72d8fa871675781..b7cc19ecfeaee5ae5c6bb9416c408c73c98d1b2a 100644 (file)
@@ -4,4 +4,18 @@
                 user_blocks_path,
                 :class => ["nav-link", { :active => action_name == "index" }] %>
   </li>
+  <% if current_user&.blocks&.exists? %>
+    <li class="nav-item">
+      <%= link_to t(".blocks_on_me"),
+                  user_blocks_on_path(current_user),
+                  :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>