X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/28579180e55dc671bc646f58a3d0d56630922255..8438ce7779c5aaa6b3651caa972bcb068ced13c9:/app/views/browse/node_history.html.erb
diff --git a/app/views/browse/node_history.html.erb b/app/views/browse/node_history.html.erb
index c30765917..937ad7dc0 100644
--- a/app/views/browse/node_history.html.erb
+++ b/app/views/browse/node_history.html.erb
@@ -2,11 +2,13 @@
@name = printable_name @node
@title = t('browse.node_history.node_history') + ' | ' + @name
%>
-
<%= t'browse.node_history.node_history_title', :node_name => link_to(h(@name), :action => "node", :id => @node.id) %>
+<%= raw t'browse.node_history.node_history_title', :node_name => link_to(h(@name), :action => "node", :id => @node.id) %>
+<% if @node.visible -%>
<%= render :partial => "map", :object => @node %>
+<% end -%>
<% @node.old_nodes.reverse.each do |node| %>
<%= render :partial => "node_details", :object => node %>
<% end %>
-<%= raw t 'browse.node_history.download', :download_xml_link => link_to(t('browse.node_history.download_xml'), :controller => "old_node", :action => "history"),
- :view_details_link => link_to(t('browse.node_history.view_details'), :action => "node") %>
+<%= link_to(t('browse.node_history.download_xml'), :controller => "old_node", :action => "history") %>
+| <%= link_to(t('browse.node_history.view_details'), :action => "node") %>