]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/user_blocks/_navigation.html.erb
Merge remote-tracking branch 'upstream/pull/5116'
[rails.git] / app / views / user_blocks / _navigation.html.erb
index a84ba133985c0b4331f339f669f1fc9296358547..061989586a255b067cdcf94d219feb7d8b06df86 100644 (file)
                   :class => ["nav-link", { :active => action_name == "blocks_by" }] %>
     </li>
   <% end %>
+  <% if @user_block&.persisted? %>
+    <li class="nav-item">
+      <%= link_to t(".block", :id => @user_block.id),
+                  user_block_path(@user_block),
+                  :class => "nav-link active" %>
+    </li>
+  <% elsif @user_block&.new_record? %>
+    <li class="nav-item">
+      <%= link_to t(".new_block"),
+                  new_user_block_path,
+                  :class => "nav-link active" %>
+    </li>
+  <% end %>
 </ul>