|
<h1><%= @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>
|
|
<%= sprintf(_("This artwork is part of the '%s' set."), link_to(@artwork.artwork_set.name, :action => 'set', :id => @artwork.artwork_set.id)) %>
|
|
<% if @artwork.artwork_group %>
|
|
<br />
|
|
<%= sprintf(_("This artwork is part of the '%s' group."), link_to(@artwork.artwork_group.name, :action => 'group', :id => @artwork.artwork_group.id)) %>
|
|
<% end %>
|
|
</p>
|
|
|
|
<%= display_image_frame(@artwork.image, :size => :thumb_big, :with_link => false) %>
|
|
|