4 <th><%= t 'browse.changeset_details.created_at' %></th>
5 <td><%= l changeset_details.created_at %></td>
9 <th><%= t 'browse.changeset_details.closed_at' %></th>
10 <td><%= l changeset_details.closed_at %></td>
13 <% if changeset_details.user.data_public? %>
15 <th><%= t 'browse.changeset_details.belongs_to' %></th>
16 <td><%= link_to h(changeset_details.user.display_name), :controller => "user", :action => "view", :display_name => changeset_details.user.display_name %></td>
20 <%= render :partial => "tag_details", :object => changeset_details %>
23 <th><%= t 'browse.changeset_details.bounding_box' %></th>
24 <% unless changeset_details.has_valid_bbox? %>
25 <td><%= t 'browse.changeset_details.no_bounding_box' %></td>
27 bbox = changeset_details.bbox.to_unscaled
32 <td colspan="3" style="text-align:center"><%=bbox.max_lat -%></td>
35 <td><%=bbox.min_lon -%></td>
36 <td>(<a href='/?minlon=<%= bbox.min_lon %>&minlat=<%= bbox.min_lat %>&maxlon=<%= bbox.max_lon %>&maxlat=<%= bbox.max_lat %>
37 &box=yes' title='<%= t 'browse.changeset_details.show_area_box' %>'><%= t 'browse.changeset_details.box' %></a>)</td>
38 <td><%=bbox.max_lon -%></td>
41 <td colspan="3" style="text-align:center"><%= bbox.min_lat -%></td>
48 <% unless @nodes.empty? %>
50 <th><%= t 'browse.changeset_details.has_nodes', :count => @node_pages.item_count %></th>
52 <table cellpadding="0">
53 <% @nodes.each do |node| %>
54 <tr><td><%= link_to h(printable_name(node, true)), { :action => "node", :id => node.node_id.to_s }, :class => link_class('node', node), :title => link_title(node) %></td></tr>
59 <%= render :partial => 'paging_nav', :locals => { :pages => @node_pages, :page_param => "node_page"} %>
62 <% unless @ways.empty? %>
64 <th><%= t 'browse.changeset_details.has_ways', :count => @way_pages.item_count %></th>
66 <table cellpadding="0">
67 <% @ways.each do |way| %>
68 <tr><td><%= link_to h(printable_name(way, true)), { :action => "way", :id => way.way_id.to_s }, :class => link_class('way', way), :title => link_title(way) %></td></tr>
71 #render :partial => "containing_relation", :collection => changeset_details.containing_relation_members
76 <%= render :partial => 'paging_nav', :locals => { :pages => @way_pages, :page_param => "way_page" } %>
79 <% unless @relations.empty? %>
81 <th><%= t 'browse.changeset_details.has_relations', :count => @relation_pages.item_count %></th>
83 <table cellpadding="0">
84 <% @relations.each do |relation| %>
85 <tr><td><%= link_to h(printable_name(relation, true)), { :action => "relation", :id => relation.relation_id.to_s }, :class => link_class('relation', relation), :title => link_title(relation) %></td></tr>
90 <%= render :partial => 'paging_nav', :locals => { :pages => @relation_pages, :page_param => "relation_page" } %>