Project

General

Profile

Download (658 Bytes) Statistics
| Branch: | Tag: | Revision:
c7dd4b36 Marc Dequènes (Duck)
<h1><%= _("Tree view of the Cyma") %></h1>

<table>
4a95d72c Marc Dequènes (Duck)
<% ArtworkSet.find(:all, :order => 'name ASC').each do |set| %>
3523460d Marc Dequènes (Duck)
<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>
c7dd4b36 Marc Dequènes (Duck)
<% unless set.artwork_groups.empty? %>
<% set.artwork_groups.each do |group| %>
2e9b8af0 Marc Dequènes (Duck)
<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>
c7dd4b36 Marc Dequènes (Duck)
<% end %>
<% end %>
</tr>
<% end %>
</table>