+ <% if node_details.redacted? %>
+ <%= t 'browse.redacted.message_html',
+ :type => t('browse.redacted.type.node'),
+ :version => node_details.version,
+ :redaction_link => link_to(t('browse.redacted.redaction',
+ :id => node_details.redaction.id), node_details.redaction) %>
+ <% else %>
+ <%= render :partial => "common_details", :object => node_details %>
- <%= render :partial => "common_details", :object => node_details %>
-
-
- <%= t 'browse.node_details.coordinates' %> |
- <%= link_to ("#{number_with_delimiter(node_details.lat)}, #{number_with_delimiter(node_details.lon)}"), {:controller => 'site', :action => 'index', :lat => h(node_details.lat), :lon => h(node_details.lon), :zoom => "18"} %> |
-
-
- <% unless node_details.ways.empty? and node_details.containing_relation_members.empty? %>
-
- <%= t 'browse.node_details.part_of' %> |
-
-
- <% node_details.ways.each do |way| %>
- <%= link_to h(printable_name(way)), { :action => "way", :id => way.id.to_s }, :class => link_class('way', way), :title => link_title(way) %> |
- <% end %>
- <%= render :partial => "containing_relation", :collection => node_details.containing_relation_members %>
-
- |
-
+ <% unless node_details.ways.empty? and node_details.containing_relation_members.empty? %>
+
<%= t 'browse.node_details.part_of' %>
+
+ <% node_details.ways.each do |way| %>
+ - <%= link_to h(printable_name(way)), { :action => "way", :id => way.id.to_s }, :class => link_class('way', way), :title => link_title(way) %>
+ <% end %>
+ <%= render :partial => "containing_relation", :collection => node_details.containing_relation_members %>
+
+ <% end %>
<% end %>
-
-