X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/29f79e0a85ccaefcc8245f1bc6996c67110c8bf0..c4090bb150e0eb866151ba0477e50b0421d60527:/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 e37f0e037..ed7569561 100644
--- a/app/views/browse/node_history.html.erb
+++ b/app/views/browse/node_history.html.erb
@@ -1,25 +1,19 @@
<%
-@name = printable_name @node
-@title = t('browse.node_history.node_history') + ' | ' + @name
+ @name = printable_name @node
+ set_title(t('browse.node_history.node_history') + ' | ' + @name)
%>
-<% content_for :head do %>
-<%= stylesheet_link_tag 'browse' %>
-<% end %>
-<% content_for :heading do %>
-
<%= raw t'browse.node_history.node_history_title', :node_name => link_to(h(@name), :action => "node", :id => @node.id) %>
-
- - <%= link_to(t('browse.node_history.download_xml'), :controller => "old_node", :action => "history") %>
- - <%= link_to(t('browse.node_history.view_details'), :action => "node") %>
-
-<% end %>
+
+
+ <%= 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 %>
-
- <% @node.old_nodes.reverse.each do |node| %>
- <%= render :partial => "node_details", :object => node %>
- <% end %>
+
+ <%= link_to(t('browse.node_history.download_xml'), :controller => "old_node", :action => "history") %>
+ ·
+ <%= link_to(t('browse.node_history.view_details'), :action => "node") %>