]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/_node_details.html.erb
Present links at the bottom of data browser pages in a consistent way
[rails.git] / app / views / browse / _node_details.html.erb
index 50188c934c4b4d0bba2a60b76824cf94589369f9..23176eab23040f2accc0e76391c42e9b61731dfa 100644 (file)
@@ -1,11 +1,16 @@
+<% if node_details.redacted? %>
+<p><%= t 'browse.redacted.message_html', :type => t('browse.redacted.type.node'), :redaction_link => link_to(t('browse.redacted.redaction', :id => node_details.redaction.id), node_details.redaction), :version => node_details.version %></p>
+<% else %>
 <table class="browse_details" id="<%= node_details.version %>">
 
   <%= render :partial => "common_details", :object => node_details %>
 
+  <% if node_details.visible -%>
   <tr>
     <th><%= t 'browse.node_details.coordinates' %></th>
     <td><div class="geo"><%= link_to(content_tag(:span, number_with_delimiter(node_details.lat), :class => "latitude") + ", " + content_tag(:span, number_with_delimiter(node_details.lon), :class => "longitude"), {:controller => 'site', :action => 'index', :lat => h(node_details.lat), :lon => h(node_details.lon), :zoom => "18"}) %></div></td>
   </tr>
+  <% end -%>
 
   <% unless node_details.ways.empty? and node_details.containing_relation_members.empty? %>
     <tr valign="top">
@@ -22,3 +27,4 @@
   <% end %>
 
 </table>
+<% end %>