]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/_node_details.rhtml
Merge 15165:15373 from trunk.
[rails.git] / app / views / browse / _node_details.rhtml
index e3d11e0fee126583a0302618dcec81112a1565cd..80680fcb116511494780bc07a02b3511f3f23df1 100644 (file)
@@ -2,13 +2,18 @@
 
   <%= render :partial => "common_details", :object => node_details %>
 
+  <tr>
+    <th>Coordinates:</th>
+    <td><div class="geo"><a href="/?lat=<%= h(node_details.lat) %>&lon=<%= h(node_details.lon) %>&zoom=18"><span class="latitude"><%= h(node_details.lat) %></span>, <span class="longitude"><%= h(node_details.lon) %></span></a></div></td>
+  </tr>
+
   <% unless node_details.ways.empty? and node_details.containing_relation_members.empty? %>
     <tr valign="top">
-      <th>Part of:</th>
+      <th><%= t 'browse.node_details.part_of' %></th>
       <td>
-        <table padding="0">
+        <table cellpadding="0">
           <% node_details.ways.each do |way| %>
-            <tr><td><%= link_to "Way " + way.id.to_s, :action => "way", :id => way.id.to_s %></td></tr>
+            <tr><td><%= link_to h(printable_name(way)), :action => "way", :id => way.id.to_s %></td></tr>
           <% end %>
           <%= render :partial => "containing_relation", :collection => node_details.containing_relation_members %>
         </table>