projects
/
rails.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Move list of containing relations to top of browse views
[rails.git]
/
app
/
views
/
browse
/
_way.html.erb
diff --git
a/app/views/browse/_way.html.erb
b/app/views/browse/_way.html.erb
index 489b9cf0756f92e69ee78bf6fbf733fe3f9d0276..c2287a1cc0b9b854881a1d3fa31de2e3cb25b491 100644
(file)
--- a/
app/views/browse/_way.html.erb
+++ b/
app/views/browse/_way.html.erb
@@
-10,6
+10,13
@@
<div class='browse-section browse-way'>
<%= render :partial => "common_details", :object => way %>
<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>
<% unless way.way_nodes.empty? %>
<h4><%= t'browse.way.nodes' %></h4>
<ul>
@@
-24,12
+31,5
@@
<% end %>
</ul>
<% end %>
<% 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 %>
</div>
<% end %>