|
<h2><%= _("List of Artwork Sizes") %></h2>
|
|
|
|
<p>
|
|
<table>
|
|
<tr><th><%= _("Height (cm)") %></th><th><%= _("Width (cm)") %></th><th><%= _("Standard?") %></th><th><%= _("Actions") %></th></tr>
|
|
<% resource_model.find(:all, :order => "height ASC, width ASC").each do |artwork_size| %>
|
|
<tr><td><%= mm_to_cm(artwork_size.height) %></td><td><%= mm_to_cm(artwork_size.width) %></td><td><%= artwork_size.standard ? _("Yes") : _("No") %></td><td class="actions"><%= display_standard_item_actions(artwork_size) %></td></tr>
|
|
<% end %>
|
|
</table>
|
|
<%= display_new_action %>
|
|
</p>
|