]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/way_history.html.erb
Fix rendering of note comments (#333)
[rails.git] / app / views / browse / way_history.html.erb
index 2245017db67f5161391cfee31cc332bd7070ec57..49058edc1013d694911a726524a1682a3c4f8f91 100644 (file)
@@ -2,11 +2,21 @@
 @name = printable_name @way
 @title = t('browse.way_history.way_history') + ' | ' + @name
 %>
-<h2><%= raw t'browse.way_history.way_history_title', :way_name => link_to(h(@name), :action => "way", :id => @way.id) %></h2>
+<% content_for :head do %>
+<%= stylesheet_link_tag 'browse' %>
+<% end %>
+
+<% content_for :heading do %>
+  <h2><%= raw t'browse.way_history.way_history_title', :way_name => link_to(h(@name), :action => "way", :id => @way.id) %></h2>
+  <ul class='secondary-actions clearfix'>
+    <li><%= link_to(t('browse.way_history.download_xml'), :controller => "old_way", :action => "history") %></li>
+    <li><%= link_to(t('browse.way_history.view_details'), :action => "way") %></li>
+  </ul>
+<% end %>
+
 <%= render :partial => "map", :object => @way %>
+<div class='column-1'>
 <% @way.old_ways.reverse.each do |way| %>
   <%= render :partial => "way_details", :object => way %>
-  <hr />
 <% end %>
-<%= raw 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") %>
+</div>
\ No newline at end of file