- <% unless way.containing_relation_members.empty? %>
- <h4><%= t'browse.part_of' %></h4>
- <ul>
- <%= render :partial => "containing_relation", :collection => way.containing_relation_members %>
- </ul>
+ <% unless way.way_nodes.empty? %>
+ <h4><%= t ".nodes" %></h4>
+ <details <%= "open" if way.way_nodes.count < 10 %>>
+ <summary><%= t ".nodes_count", :count => way.way_nodes.count %></summary>
+ <ul class="list-unstyled">
+ <% way.way_nodes.each do |wn| %>
+ <li>
+ <%= element_single_current_link "node", wn.node, node_path(wn.node) %>
+ <% related_ways = wn.node.ways.reject { |w| w.id == wn.way_id } %>
+ <% if related_ways.size > 0 then %>
+ (<%= t ".also_part_of_html",
+ :count => related_ways.size,
+ :related_ways => to_sentence(related_ways.map { |w| element_single_current_link "way", w, way_path(w) }) %>)
+ <% end %>
+ </li>
+ <% end %>
+ </ul>
+ </details>