-<% if node.redacted? %>
+<% if node.redacted? && !params[:show_redactions] %>
<div class="browse-section browse-redacted">
<%= t "browse.redacted.message_html",
:type => t("browse.redacted.type.node"),
:id => node.redaction.id), node.redaction) %>
</div>
<% else %>
- <div class="browse-section browse-node">
+ <%= tag.div :class => ["browse-section", "browse-node", { "text-muted" => node.redacted? }] do %>
<%= render :partial => "browse/common_details", :object => node %>
<% unless node.ways.empty? and node.containing_relation_members.empty? %>
<summary><%= t "browse.part_of_ways", :count => node.ways.uniq.count %></summary>
<ul class="list-unstyled">
<% node.ways.uniq.each do |way| %>
- <li><%= element_single_current_link "way", way, way_path(way) %></li>
+ <li><%= element_single_current_link "way", way %></li>
<% end %>
</ul>
</details>
</details>
<% end %>
<% end %>
- </div>
+ <% end %>
<% end %>