root/app/views/view/artwork.rhtml @ 5c2a70ab
8ff59b90 | Marc Dequènes (Duck) | <h1><%= sprintf(_("View of artwork '%s'"), @artwork.title) %></h1>
|
|
<div style="float: right;">
|
|||
<h2><%= _("Steps") %></h2>
|
|||
<table>
|
|||
<% @artwork.artwork_step_images.each do |step| %>
|
|||
<tr>
|
|||
<td><%= display_image_frame(step, :size => :thumb_small, :display_size => false, :display_title => false, :with_link => false) %></td>
|
|||
<td><%= step.date %></td>
|
|||
<tr>
|
|||
<% end %>
|
|||
</table>
|
|||
</div>
|
|||
<p>
|
|||
402c7e4f | Marc Dequènes (Duck) | <%= sprintf(_("This artwork is part of the '%s' set."), link_to(@artwork.artwork_set.name, :action => 'set', :id => @artwork.artwork_set.id)) %>
|
|
8ff59b90 | Marc Dequènes (Duck) | <% if @artwork.artwork_group %>
|
|
<br />
|
|||
402c7e4f | Marc Dequènes (Duck) | <%= sprintf(_("This artwork is part of the '%s' group."), link_to(@artwork.artwork_group.name, :action => 'group', :id => @artwork.artwork_group.id)) %>
|
|
8ff59b90 | Marc Dequènes (Duck) | <% end %>
|
|
</p>
|
|||
<%= display_image_frame(@artwork.image, :size => :thumb_big, :with_link => false) %>
|