|
<h1><%= _("Tree view of the Cyma") %></h1>
|
|
|
|
<table>
|
|
<% ArtworkSet.find(:all, :order => 'name ASC').each do |set| %>
|
|
<tr><th><%= link_to(display_artwork_frame(set.artworks.last, :frame_type => :cell, :size => :thumb_small, :force_title => set.name, :display_size => false), :action => 'set', :id => set.id) %></th>
|
|
<% unless set.artwork_groups.empty? %>
|
|
<% set.artwork_groups.each do |group| %>
|
|
<td><%= link_to(display_artwork_frame(group.artworks.last, :frame_type => :cell, :size => :thumb_small, :force_title => group.name, :display_size => false), :action => 'group', :id => group.id) %></td>
|
|
<% end %>
|
|
<% end %>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|