|
<p>
|
|
<%
|
|
selected_artwork_set_id = (@artwork ? @artwork.artwork_set_id : nil)
|
|
selected_artwork_group_id = (@artwork ? @artwork.artwork_group_id : nil)
|
|
selected_artwork_size_id = (@artwork ? @artwork.artwork_size_id : nil)
|
|
|
|
form_for_resource do |f|
|
|
%>
|
|
<%=
|
|
stacking_form(f) do |table|
|
|
table.field :login, _("Login"), :text_field
|
|
table.field :real_name, _("Real Name"), :text_field
|
|
table.field :email, _("eMail"), :text_field
|
|
table.field :admin, _("Administrator?"), :check_box
|
|
table.field :password, _("Password"), :password_field
|
|
table.field :password_confirmation, _("Password (confirmation)"), :password_field
|
|
table.content display_standard_form_buttons(submit_label)
|
|
end
|
|
%>
|
|
<%
|
|
end
|
|
%>
|
|
</p>
|