Improve the layout of the object browser views.
This commit is contained in:
parent
0cb97bd7d9
commit
398d5fa329
26 changed files with 358 additions and 143 deletions
19
app/views/browse/_node_details.rhtml
Normal file
19
app/views/browse/_node_details.rhtml
Normal file
|
@ -0,0 +1,19 @@
|
|||
<table>
|
||||
|
||||
<%= render :partial => "common_details", :object => node_details %>
|
||||
|
||||
<% unless node_details.ways.empty? and node_details.containing_relation_members.empty? %>
|
||||
<tr valign="top">
|
||||
<th>Part of:</th>
|
||||
<td>
|
||||
<table padding="0">
|
||||
<% node_details.ways.each do |way| %>
|
||||
<tr><td><%= link_to "Way " + way.id.to_s, :action => "way", :id => way.id.to_s %></td></tr>
|
||||
<% end %>
|
||||
<%= render :partial => "containing_relation", :collection => node_details.containing_relation_members %>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
|
||||
</table>
|
Loading…
Add table
Add a link
Reference in a new issue