]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/node_history.html.erb
Simplify layouting
[rails.git] / app / views / browse / node_history.html.erb
index 61fc83492beb4b01a4996e5fbae540dce6cd3d86..687dc4f9b63787e1af86c377d3a6d1095ff49c31 100644 (file)
@@ -2,20 +2,18 @@
 @name = printable_name @node
 @title = t('browse.node_history.node_history') + ' | ' + @name
 %>
-<% content_for :heading do %>
-  <h2><%= raw t'browse.node_history.node_history_title', :node_name => link_to(h(@name), :action => "node", :id => @node.id) %></h2>
-  <ul class='secondary-actions clearfix'>
-    <li><%= link_to(t('browse.node_history.download_xml'), :controller => "old_node", :action => "history") %></li>
-    <li><%= link_to(t('browse.node_history.view_details'), :action => "node") %></li>
-  </ul>
+
+<% content_for :head do %>
+  <%= stylesheet_link_tag 'browse' %>
 <% end %>
 
-<% if @node.visible -%>
-  <%= render :partial => "map", :object => @node %>
-<% end -%>
+<h2><%= raw t'browse.node_history.node_history_title', :node_name => link_to(h(@name), :action => "node", :id => @node.id) %></h2>
+
+<% @node.old_nodes.reverse.each do |node| %>
+  <%= render :partial => "node_details", :object => node %>
+<% end %>
 
-<div class='column-1'>
-  <% @node.old_nodes.reverse.each do |node| %>
-    <%= render :partial => "node_details", :object => node %>
-  <% end %>
-</div>
+<ul class='secondary-actions clearfix'>
+  <li><%= link_to(t('browse.node_history.download_xml'), :controller => "old_node", :action => "history") %></li>
+  <li><%= link_to(t('browse.node_history.view_details'), :action => "node") %></li>
+</ul>