]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/way_history.rhtml
Get rails to do asset tagging for the SWF file.
[rails.git] / app / views / browse / way_history.rhtml
1 <h2>Way History: <%= h(@name) %></h2>
2
3 <table width="100%">
4   <tr valign="top">
5     <td>
6       <% @way.old_ways.reverse.each do |way| %>
7         <%= render :partial => "way_details", :object => way %>
8         <hr />
9       <% end %>
10       <%= link_to "Download XML", :controller => "old_way", :action => "history" %>
11       or
12       <%= link_to "view details", :action => "way" %>
13     </td>
14     <%= render :partial => "map", :object => @way %>
15   </tr>
16 </table>