Filter out the current way correctly
This commit is contained in:
parent
7b89dc6349
commit
c1db05321a
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
|||
<% way_details.way_nodes.each do |wn| %>
|
||||
<tr><td>
|
||||
<%= link_to h(printable_name(wn.node)), { :action => "node", :id => wn.node_id.to_s }, :class => link_class('node', wn.node), :title => link_title(wn.node) %>
|
||||
<% related_ways = wn.node.ways.reject { |w| w.id == way_details.id } %>
|
||||
<% related_ways = wn.node.ways.reject { |w| w.id == wn.way_id } %>
|
||||
<% if related_ways.size > 0 then %>
|
||||
(<%= raw t 'browse.way_details.also_part_of', :count => related_ways.size, :related_ways => related_ways.map { |w| link_to(h(printable_name(w)), { :action => "way", :id => w.id.to_s }, :class => link_class('way', w), :title => link_title(w) ) }.to_sentence %>)
|
||||
<% end %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue