]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/node_history.rhtml
change updatelinks params so that Potlatch can pass in the view bbox. Also check...
[rails.git] / app / views / browse / node_history.rhtml
1 <h2>Node History: <%= h(@name) %></h2>
2
3 <table width="100%">
4   <tr valign="top">
5     <td>
6       <% @node.old_nodes.reverse.each do |node| %>
7         <%= render :partial => "node_details", :object => node %>
8         <hr />
9       <% end %>
10       <%= link_to "Download XML", :controller => "old_node", :action => "history" %>
11       or
12       <%= link_to "view details", :action => "node" %>
13     </td>
14     <%= render :partial => "map", :object => @node %>
15   </tr>
16 </table>