]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/browse/_way.html.erb
Move list of containing relations to top of browse views
[rails.git] / app / views / browse / _way.html.erb
index 489b9cf0756f92e69ee78bf6fbf733fe3f9d0276..c2287a1cc0b9b854881a1d3fa31de2e3cb25b491 100644 (file)
   <div class='browse-section browse-way'>
     <%= render :partial => "common_details", :object => way %>
 
+    <% unless way.containing_relation_members.empty? %>
+      <h4><%= t'browse.part_of' %></h4>
+      <ul>
+        <%= render :partial => "containing_relation", :collection => way.containing_relation_members.uniq %>
+      </ul>
+    <% end %>
+
     <% unless way.way_nodes.empty? %>
       <h4><%= t'browse.way.nodes' %></h4>
       <ul>
         <% end %>
       </ul>
     <% end %>
-
-    <% unless way.containing_relation_members.empty? %>
-      <h4><%= t'browse.part_of' %></h4>
-      <ul>
-        <%= render :partial => "containing_relation", :collection => way.containing_relation_members.uniq %>
-      </ul>
-    <% end %>
   </div>
 <% end %>