5 <td><%= h(changeset_details.created_at) %></td>
8 <% if changeset_details.user.data_public? %>
11 <td><%= link_to h(changeset_details.user.display_name), :controller => "user", :action => "view", :display_name => changeset_details.user.display_name %></td>
15 <% unless changeset_details.tags_as_hash.empty? %>
20 <%= render :partial => "tag", :collection => changeset_details.tags_as_hash %>
26 <% unless changeset_details.old_nodes.empty? %>
28 <th>Has the following nodes:</th>
31 <% changeset_details.old_nodes.each do |node| %>
32 <tr><td><%= link_to "Node #{node.id.to_s}, version #{node.version.to_s}", :action => "node", :id => node.id.to_s %></td></tr>
39 <% unless changeset_details.old_ways.empty? %>
41 <th>Has the following ways:</th>
44 <% changeset_details.old_ways.each do |way| %>
45 <tr><td><%= link_to "Way #{way.id.to_s}, version #{way.version.to_s}", :action => "way", :id => way.id.to_s %></td></tr>
48 #render :partial => "containing_relation", :collection => changeset_details.containing_relation_members
55 <% unless changeset_details.old_relations.empty? %>
57 <th>Has the following relations:</th>
60 <% changeset_details.old_relations.each do |relation| %>
61 <tr><td><%= link_to "Relation #{relation.id.to_s}, version #{relation.version.to_s}", :action => "relation", :id => relation.id.to_s %></td></tr>