]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/way.html.erb
Fix rendering of note comments (#333)
[rails.git] / app / views / browse / way.html.erb
index aa7b5d0b758ee2872b45d667a57e9a813e0a2cd4..15a0dcad820a74183edb2caa9c858369bc7d39be 100644 (file)
@@ -5,11 +5,19 @@
 <% content_for :head do %>
 <%= stylesheet_link_tag 'browse' %>
 <% end %>
+
+<% content_for :heading do %>
+  <h2><%= t'browse.way.way_title', :way_name => @name %></h2>
+  <ul class='secondary-actions clearfix'>
+    <li><%= link_to(t('browse.way.download_xml'), :controller => "way", :action => "read") %></li>
+    <li><%= link_to(t('browse.way.view_history'), :action => "way_history") %></li>
+    <li><%= link_to(t('browse.way.edit'), :controller => "site", :action => "edit", :way => @way.id) %></li>
+  </ul>
+<% end %>
+
 <%= render :partial => "navigation" %>
-<h2><%= t'browse.way.way_title', :way_name => @name %></h2>
 <%= render :partial => "map", :object => @way %>
-<%= render :partial => "way_details", :object => @way %>
-<hr />
-<%= link_to(t('browse.way.download_xml'), :controller => "way", :action => "read") %>
-| <%= link_to(t('browse.way.view_history'), :action => "way_history") %>
-| <%= link_to(t('browse.way.edit'), :controller => "site", :action => "edit", :way => @way.id) %>
+
+<div class='column-1'>
+  <%= render :partial => "way_details", :object => @way %>
+</div>
\ No newline at end of file