X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/67292724441a7a447a9ea579a36dee64825dedaf..37f42141283fb14cea0456344cc6ca6a4fa585c4:/app/views/browse/way_history.html.erb
diff --git a/app/views/browse/way_history.html.erb b/app/views/browse/way_history.html.erb
index e653c021a..8bc50e307 100644
--- a/app/views/browse/way_history.html.erb
+++ b/app/views/browse/way_history.html.erb
@@ -2,11 +2,23 @@
@name = printable_name @way
@title = t('browse.way_history.way_history') + ' | ' + @name
%>
-
<%= t'browse.way_history.way_history_title', :way_name => link_to(h(@name), :action => "way", :id => @way.id) %>
-<%= render :partial => "map", :object => @way %>
-<% @way.old_ways.reverse.each do |way| %>
- <%= render :partial => "way_details", :object => way %>
-
+
+<% content_for :head do %>
+ <%= stylesheet_link_tag 'browse' %>
+ <%= javascript_include_tag 'index' %>
<% end %>
-<%= t'browse.way_history.download', :download_xml_link => link_to(t('browse.way_history.download_xml'), :controller => "old_way", :action => "history"),
- :view_details_link => link_to(t('browse.way_history.view_details'), :action => "way") %>
+
+<% content_for :sidebar do %>
+ <%= raw t'browse.way_history.way_history_title', :way_name => link_to(h(@name), :action => "way", :id => @way.id) %>
+
+ <% @way.old_ways.reverse.each do |way| %>
+ <%= render :partial => "way_details", :object => way %>
+ <% end %>
+
+
+ - <%= link_to(t('browse.way_history.download_xml'), :controller => "old_way", :action => "history") %>
+ - <%= link_to(t('browse.way_history.view_details'), :action => "way") %>
+
+<% end %>
+
+<%= render :template => 'layouts/map' %>