From: Tom Hughes Date: Sun, 31 May 2009 11:04:43 +0000 (+0000) Subject: Show connected ways in the data browser. Closes #1882. X-Git-Tag: live~7388 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/cf00e528cbe94229839f3f70dd2a1c04d9205edd?hp=2b7f92029f678417025f57c8f6d28e9aea82ad98 Show connected ways in the data browser. Closes #1882. --- diff --git a/app/views/browse/_way_details.rhtml b/app/views/browse/_way_details.rhtml index 1122c80f3..ef80870db 100644 --- a/app/views/browse/_way_details.rhtml +++ b/app/views/browse/_way_details.rhtml @@ -7,7 +7,12 @@ <% way_details.way_nodes.each do |wn| %> - + <% end %>
<%= link_to h(printable_name(wn.node)), :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 %> +