]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/way.html.erb
Simplify geolink-related code
[rails.git] / app / views / browse / way.html.erb
index 15a0dcad820a74183edb2caa9c858369bc7d39be..e5493d3f982b23d0eb2907006169ff7fb31e87e5 100644 (file)
@@ -2,22 +2,20 @@
 @name = printable_name @way
 @title = t('browse.way.way') + ' | ' + @name
 %>
+
 <% content_for :head do %>
-<%= stylesheet_link_tag 'browse' %>
+  <%= stylesheet_link_tag 'browse' %>
 <% end %>
 
-<% content_for :heading do %>
+<% content_for :sidebar do %>
   <h2><%= t'browse.way.way_title', :way_name => @name %></h2>
+
+  <%= render :partial => "way_details", :object => @way %>
+
   <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" %>
-<%= render :partial => "map", :object => @way %>
-
-<div class='column-1'>
-  <%= render :partial => "way_details", :object => @way %>
-</div>
\ No newline at end of file
+<%= render :template => 'layouts/map' %>