1 <div class="browse_details" id="<%= node_details.version %>">
 
   2 <% if node_details.redacted? %>
 
   3   <div class='browse-section'>
 
   4     <%= t 'browse.redacted.message_html', :type => t('browse.redacted.type.node'), :redaction_link => link_to(t('browse.redacted.redaction', :id => node_details.redaction.id), node_details.redaction), :version => node_details.version %>
 
   7   <%= render :partial => "common_details", :object => node_details %>
 
   9   <% if node_details.visible -%>
 
  10   <div class='browse-section'>
 
  11     <h4><%= t 'browse.node_details.coordinates' %></h4>
 
  12     <div class="geo"><%= link_to(content_tag(:span, number_with_delimiter(node_details.lat), :class => "latitude") + ", " + content_tag(:span, number_with_delimiter(node_details.lon), :class => "longitude"), {:controller => 'site', :action => 'index', :lat => h(node_details.lat), :lon => h(node_details.lon), :zoom => "18"}) %></div>
 
  16   <% unless node_details.ways.empty? and node_details.containing_relation_members.empty? %>
 
  17     <div class='browse-section'>
 
  18       <h4><%= t 'browse.node_details.part_of' %></h4>
 
  20           <% node_details.ways.each do |way| %>
 
  21             <li><%= link_to h(printable_name(way)), { :action => "way", :id => way.id.to_s }, :class => link_class('way', way), :title => link_title(way) %></li>
 
  23           <%= render :partial => "containing_relation", :collection => node_details.containing_relation_members %>