|
<p>
|
|
<%
|
|
form_for_resource do |f|
|
|
%>
|
|
<%=
|
|
stacking_form(f) do |table|
|
|
table.field :height, _("Height (cm):"), :text_field, :value => mm_to_cm(@artwork_size.height), :size => 5
|
|
table.field :width, _("Width (cm):"), :text_field, :value => mm_to_cm(@artwork_size.width), :size => 5
|
|
table.field :standard, _("Standard?"), :check_box
|
|
table.content display_standard_form_buttons(submit_label)
|
|
end
|
|
%>
|
|
<%
|
|
end
|
|
%>
|
|
</p>
|