+ <% unless @nodes.empty? %>
+ <tr valign="top">
+ <th>Has the following <%= @node_pages.item_count %> nodes:</th>
+ <td>
+ <table cellpadding="0">
+ <% @nodes.each do |node| %>
+ <tr><td><%= link_to h(printable_name(node, true)), :action => "node", :id => node.id.to_s %></td></tr>
+ <% end %>
+ </table>
+ </td>
+ </tr>
+ <%= render :partial => 'paging_nav', :locals => { :pages => @node_pages, :page_param => "node_page"} %>
+ <% end %>
+
+ <% unless @ways.empty? %>
+ <tr valign="top">
+ <th>Has the following <%= @way_pages.item_count %> ways:</th>
+ <td>
+ <table cellpadding="0">
+ <% @ways.each do |way| %>
+ <tr><td><%= link_to h(printable_name(way, true)), :action => "way", :id => way.id.to_s %></td></tr>
+ <% end %>
+ <%=
+ #render :partial => "containing_relation", :collection => changeset_details.containing_relation_members
+ %>
+ </table>
+ </td>
+ </tr>
+ <%= render :partial => 'paging_nav', :locals => { :pages => @way_pages, :page_param => "way_page" } %>
+ <% end %>
+
+ <% unless @relations.empty? %>