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
27
app/views/browse/_relation_details.rhtml
Normal file
27
app/views/browse/_relation_details.rhtml
Normal file
|
@ -0,0 +1,27 @@
|
|||
<table>
|
||||
|
||||
<%= render :partial => "common_details", :object => relation_details %>
|
||||
|
||||
<% unless relation_details.relation_members.empty? %>
|
||||
<tr valign="top">
|
||||
<th>Members:</th>
|
||||
<td>
|
||||
<table padding="0">
|
||||
<%= render :partial => "relation_member", :collection => relation_details.relation_members %>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
|
||||
<% unless relation_details.containing_relation_members.empty? %>
|
||||
<tr>
|
||||
<th>Part of:</th>
|
||||
<td>
|
||||
<table padding="0">
|
||||
<%= render :partial => "containing_relation", :collection => relation_details.containing_relation_members %>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
|
||||
</table>
|
Loading…
Add table
Add a link
Reference in a new issue