X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b30983f02bd1a0963157c14f14e996f258936625..1a0ef82ab8c89186124991e0c2299bb1925c0a67:/app/views/browse/_node_details.html.erb?ds=inline
diff --git a/app/views/browse/_node_details.html.erb b/app/views/browse/_node_details.html.erb
index 10a64b7f7..2300e75cc 100644
--- a/app/views/browse/_node_details.html.erb
+++ b/app/views/browse/_node_details.html.erb
@@ -1,21 +1,21 @@
-
-<% if node_details.redacted? %>
-
- <%= 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 %>
-
-<% else %>
- <%= render :partial => "common_details", :object => node_details %>
+
+ <% if node_details.redacted? %>
+ <%= t 'browse.redacted.message_html',
+ :type => t('browse.redacted.type.node'),
+ :version => node_details.version,
+ :redaction_link => link_to(t('browse.redacted.redaction',
+ :id => node_details.redaction.id), node_details.redaction) %>
+ <% else %>
+ <%= render :partial => "common_details", :object => node_details %>
- <% unless node_details.ways.empty? and node_details.containing_relation_members.empty? %>
-
+ <% unless node_details.ways.empty? and node_details.containing_relation_members.empty? %>
<%= t 'browse.node_details.part_of' %>
- <% node_details.ways.each do |way| %>
- - <%= link_to h(printable_name(way)), { :action => "way", :id => way.id.to_s }, :class => link_class('way', way), :title => link_title(way) %>
- <% end %>
- <%= render :partial => "containing_relation", :collection => node_details.containing_relation_members %>
+ <% node_details.ways.each do |way| %>
+ - <%= link_to h(printable_name(way)), { :action => "way", :id => way.id.to_s }, :class => link_class('way', way), :title => link_title(way) %>
+ <% end %>
+ <%= render :partial => "containing_relation", :collection => node_details.containing_relation_members %>
-
+ <% end %>
<% end %>
-<% end %>