root/app/views/admin/artwork_sizes/_form.rhtml @ 402c7e4f
b689e231 | Marc Dequènes (Duck) | <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
|
|||
676cb428 | Marc Dequènes (Duck) | table.content display_standard_form_buttons(submit_label)
|
|
b689e231 | Marc Dequènes (Duck) | end
|
|
%>
|
|||
<%
|
|||
end
|
|||
%>
|
|||
</p>
|