]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/way_history.html.erb
79c1a99a4737243dfbc3f320ac7ec0d02fcaa7ba
[rails.git] / app / views / browse / way_history.html.erb
1 <%
2 @name = printable_name @way
3 @title = t('browse.way_history.way_history') + ' | ' + @name
4 %>
5
6 <div class='browse-section header'>
7     <h2><%= raw t'browse.way_history.way_history_title', :way_name => link_to(h(@name), :action => "way", :id => @way.id) %>
8         <span class="icon close"></span>
9     </h2>
10 </div>
11
12 <% @way.old_ways.reverse.each do |way| %>
13   <%= render :partial => "way_details", :object => way %>
14 <% end %>
15
16 <div class='secondary-actions clearfix'>
17   <span><%= link_to(t('browse.way_history.download_xml'), :controller => "old_way", :action => "history") %>
18     &middot;
19   <%= link_to(t('browse.way_history.view_details'), :action => "way") %></span>
20 </div>