X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2c67c079ac39cefd3b096524fc0b7364b0eb21d7..58cd5bfb11bccb5e326847b218809be2c93a00d5:/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 5f70492b4..e37f0e037 100644
--- a/app/views/browse/node_history.html.erb
+++ b/app/views/browse/node_history.html.erb
@@ -2,13 +2,24 @@
@name = printable_name @node
@title = t('browse.node_history.node_history') + ' | ' + @name
%>
-
<%= raw t'browse.node_history.node_history_title', :node_name => link_to(h(@name), :action => "node", :id => @node.id) %>
+<% 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 %>
+
<% if @node.visible -%>
-<%= render :partial => "map", :object => @node %>
+ <%= 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") %>
+
+
+ <% @node.old_nodes.reverse.each do |node| %>
+ <%= render :partial => "node_details", :object => node %>
+ <% end %>
+