X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c3498b490b7e695f0be0898e3df76961bda4738e..3cf5667c919813e2fd5a71254ff56bf1ebdba793:/app/views/browse/_relation.html.erb
diff --git a/app/views/browse/_relation.html.erb b/app/views/browse/_relation.html.erb
index c513ea6d1..5dcdffa47 100644
--- a/app/views/browse/_relation.html.erb
+++ b/app/views/browse/_relation.html.erb
@@ -1,4 +1,4 @@
-<% if relation.redacted? %>
+<% if relation.redacted? && !params[:show_redactions] %>
<%= t "browse.redacted.message_html",
:type => t("browse.redacted.type.relation"),
@@ -7,7 +7,7 @@
:id => relation.redaction.id), relation.redaction) %>
<% else %>
-
+ <%= tag.div :class => ["browse-section", "browse-relation", { "text-body-secondary" => relation.redacted? }] do %>
<%= render :partial => "browse/common_details", :object => relation %>
<% unless relation.containing_relation_members.empty? %>
@@ -15,7 +15,7 @@
>
<%= t "browse.part_of_relations", :count => relation.containing_relation_members.uniq.count %>
- <%= render :partial => "containing_relation", :collection => relation.containing_relation_members.uniq %>
+ <%= render :partial => "browse/containing_relation", :collection => relation.containing_relation_members.uniq %>
<% end %>
@@ -29,5 +29,5 @@
<% end %>
-
+ <% end %>
<% end %>