]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/way_history.html.erb
Style browse 404 page and simplify wording, closes #53
[rails.git] / app / views / browse / way_history.html.erb
index ddb8e288a6232ce81f74ace85b2829332913a1c4..307608e460ee381add0659c1cf384bc3d01848ef 100644 (file)
@@ -1,19 +1,19 @@
 <%
-@name = printable_name @way
-@title = t('browse.way_history.way_history') + ' | ' + @name
+  @name = printable_name @way
+  set_title(t('browse.way_history.way_history') + ' | ' + @name)
 %>
 
-<% content_for :head do %>
-  <%= stylesheet_link_tag 'browse' %>
-<% end %>
-
-<h2><%= raw t'browse.way_history.way_history_title', :way_name => link_to(h(@name), :action => "way", :id => @way.id) %></h2>
+<h2>
+  <a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
+  <%= raw t'browse.way_history.way_history_title', :way_name => link_to(h(@name), :action => "way", :id => @way.id) %>
+</h2>
 
 <% @way.old_ways.reverse.each do |way| %>
   <%= render :partial => "way_details", :object => way %>
 <% end %>
 
-<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>
+<div class='secondary-actions'>
+  <%= link_to(t('browse.way_history.download_xml'), :controller => "old_way", :action => "history") %>
+  &middot;
+  <%= link_to(t('browse.way_history.view_details'), :action => "way") %>
+</div>