]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/node_history.html.erb
Correctly report which OAuth signature algorithms are supported
[rails.git] / app / views / browse / node_history.html.erb
1 <%
2 @name = printable_name @node
3 @title = t('browse.node_history.node_history') + ' | ' + @name
4 %>
5 <% content_for :heading do %>
6   <h2><%= raw t'browse.node_history.node_history_title', :node_name => link_to(h(@name), :action => "node", :id => @node.id) %></h2>
7   <ul class='secondary-actions clearfix'>
8     <li><%= link_to(t('browse.node_history.download_xml'), :controller => "old_node", :action => "history") %></li>
9     <li><%= link_to(t('browse.node_history.view_details'), :action => "node") %></li>
10   </ul>
11 <% end %>
12
13 <% if @node.visible -%>
14   <%= render :partial => "map", :object => @node %>
15 <% end -%>
16
17 <div class='column-1'>
18   <% @node.old_nodes.reverse.each do |node| %>
19     <%= render :partial => "node_details", :object => node %>
20   <% end %>
21 </div>