X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/018c861630b3e19dc063c933783bc56c32683122..3d906fe8c6303c00e399ce2dfecc3471959fbe6e:/app/views/browse/_way_details.rhtml diff --git a/app/views/browse/_way_details.rhtml b/app/views/browse/_way_details.rhtml index bc00100d8..4dc7b2b2e 100644 --- a/app/views/browse/_way_details.rhtml +++ b/app/views/browse/_way_details.rhtml @@ -3,11 +3,16 @@ <%= render :partial => "common_details", :object => way_details %> - Nodes: + <%= t'browse.way_details.nodes' %> - +
<% way_details.way_nodes.each do |wn| %> - + <% end %>
<%= link_to "Node " + wn.node_id.to_s, :action => "node", :id => wn.node_id.to_s %>
+ <%= link_to h(printable_name(wn.node)), :action => "node", :id => wn.node_id.to_s %> + <% if wn.node.ways.size > 1 then %> + (also part of <%= wn.node.ways.reject { |w| w.id == way_details.id }.map { |w| link_to(h(printable_name(w)), :action => "way", :id => w.id.to_s) }.join(", ") %>) + <% end %> +
@@ -15,9 +20,9 @@ <% unless way_details.containing_relation_members.empty? %> - Part of: + <%= t'browse.way_details.part_of' %> - +
<%= render :partial => "containing_relation", :collection => way_details.containing_relation_members %>