]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/_way.html.erb
Merge remote-tracking branch 'upstream/pull/5851'
[rails.git] / app / views / browse / _way.html.erb
1 <%= tag.div :class => ["mb-3 border-bottom border-secondary-subtle pb-3",
2                        { "text-body-secondary" => way.redacted? && params[:show_redactions] }] do %>
3   <% if way.redacted? && !params[:show_redactions] %>
4     <%= t "browse.redacted.message_html",
5           :type => t("browse.redacted.type.way"),
6           :version => way.version,
7           :redaction_link => link_to(t("browse.redacted.redaction",
8                                        :id => way.redaction.id), way.redaction) %>
9   <% else %>
10     <%= render :partial => "browse/common_details", :object => way %>
11
12     <% unless way.containing_relation_members.empty? %>
13       <h4><%= t "browse.part_of" %></h4>
14       <details <%= "open" if way.containing_relation_members.count < 10 %>>
15         <summary><%= t "browse.part_of_relations", :count => way.containing_relation_members.uniq.count %></summary>
16         <ul class="list-unstyled browse-element-list">
17           <%= render :partial => "browse/containing_relation", :collection => way.containing_relation_members.uniq %>
18         </ul>
19       </details>
20     <% end %>
21
22     <% unless way.way_nodes.empty? %>
23       <h4><%= t ".nodes" %></h4>
24       <details <%= "open" if way.way_nodes.count < 10 %>>
25         <summary><%= t ".nodes_count", :count => way.way_nodes.count %></summary>
26         <ul class="list-unstyled browse-element-list">
27           <% way.way_nodes.each do |wn| %>
28             <%= element_list_item "node", wn.node do %>
29               <%= element_single_current_link "node", wn.node %>
30               <% related_ways = wn.node.ways.reject { |w| w.id == wn.way_id } %>
31               <% icon_connector = " " %>
32               <% if related_ways.size > 0 then %>
33                 (<%= t ".also_part_of_html",
34                        :count => related_ways.size,
35                        :related_ways => to_sentence(related_ways.map { |w| element_icon("way", w) + icon_connector + element_single_current_link("way", w) }) %>)
36               <% end %>
37             <% end %>
38           <% end %>
39         </ul>
40       </details>
41     <% end %>
42   <% end %>
43 <% end %>