X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e7ddfe10846f89b5eeec4bf4f4dc03057a744009..23a4adaa91d37d9264576d148b834e744729530f:/app/views/browse/_relation.html.erb
diff --git a/app/views/browse/_relation.html.erb b/app/views/browse/_relation.html.erb
index c513ea6d1..a987fe4d8 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-muted" => 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 %>