]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/_node.html.erb
Write browse element icons as <img>
[rails.git] / app / views / browse / _node.html.erb
1 <% if node.redacted? && !params[:show_redactions] %>
2   <div class="browse-section browse-redacted">
3     <%= t "browse.redacted.message_html",
4           :type => t("browse.redacted.type.node"),
5           :version => node.version,
6           :redaction_link => link_to(t("browse.redacted.redaction",
7                                        :id => node.redaction.id), node.redaction) %>
8   </div>
9 <% else %>
10   <%= tag.div :class => ["browse-section", "browse-node", { "text-body-secondary" => node.redacted? }] do %>
11     <%= render :partial => "browse/common_details", :object => node %>
12
13     <% unless node.ways.empty? and node.containing_relation_members.empty? %>
14       <h4><%= t "browse.part_of" %></h4>
15       <% unless node.ways.empty? %>
16         <details <%= "open" if node.ways.count < 10 %>>
17           <summary><%= t "browse.part_of_ways", :count => node.ways.uniq.count %></summary>
18           <ul class="list-unstyled browse-element-list">
19             <% node.ways.uniq.each do |way| %>
20               <%= element_list_item "way", way do %>
21                 <%= element_single_current_link "way", way %>
22               <% end %>
23             <% end %>
24           </ul>
25         </details>
26       <% end %>
27       <% unless node.containing_relation_members.empty? %>
28         <details <%= "open" if node.containing_relation_members.count < 10 %>>
29           <summary><%= t "browse.part_of_relations", :count => node.containing_relation_members.uniq.count %></summary>
30           <ul class="list-unstyled browse-element-list">
31             <%= render :partial => "browse/containing_relation", :collection => node.containing_relation_members.uniq %>
32           </ul>
33         </details>
34       <% end %>
35     <% end %>
36   <% end %>
37 <% end %>