]> git.openstreetmap.org Git - rails.git/blob - app/views/browse/_node_details.html.erb
Improve styling of redaction view
[rails.git] / app / views / browse / _node_details.html.erb
1 <% if node_details.redacted? %>
2 <p><%= t 'browse.redacted.message_html', :type => t('browse.redacted.type.node'), :redaction_link => link_to(t('browse.redacted.redaction', :id => node_details.redaction.id), node_details.redaction), :version => node_details.version %></p>
3 <% else %>
4 <table class="browse_details" id="<%= node_details.version %>">
5
6   <%= render :partial => "common_details", :object => node_details %>
7
8   <tr>
9     <th><%= t 'browse.node_details.coordinates' %></th>
10     <td><div class="geo"><%= link_to(content_tag(:span, number_with_delimiter(node_details.lat), :class => "latitude") + ", " + content_tag(:span, number_with_delimiter(node_details.lon), :class => "longitude"), {:controller => 'site', :action => 'index', :lat => h(node_details.lat), :lon => h(node_details.lon), :zoom => "18"}) %></div></td>
11   </tr>
12
13   <% unless node_details.ways.empty? and node_details.containing_relation_members.empty? %>
14     <tr valign="top">
15       <th><%= t 'browse.node_details.part_of' %></th>
16       <td>
17         <table cellpadding="0">
18           <% node_details.ways.each do |way| %>
19             <tr><td><%= link_to h(printable_name(way)), { :action => "way", :id => way.id.to_s }, :class => link_class('way', way), :title => link_title(way) %></td></tr>
20           <% end %>
21           <%= render :partial => "containing_relation", :collection => node_details.containing_relation_members %>
22         </table>
23       </td>
24     </tr>      
25   <% end %>
26
27 </table>
28 <% end %>