Sha256: fcdba31fd4d0ff2c1d47755c12b7e73164aff971f0f36544548d21da1f8fab81
Contents?: true
Size: 726 Bytes
Versions: 12
Compression:
Stored size: 726 Bytes
Contents
= simple_form_for admin, :url => admin_users_path, :method => :post, :html => { :class => 'form-horizontal' } do |f| .span4.edit %h4=t '.infos' = f.input :name, :label => t('.name') = f.input :email, :label => t('.email') = f.input :password = f.input :password_confirmation -#= f.input :super, :as => :check_box, :label => t('.super') .span5.domains %h4=t '.domains' = f.collection_select :virtual_domain_ids, VirtualDomain.all, :id, :name, {}, {:multiple => true} .out = f.button :button, t('.create'), :type => 'submit', :class => 'btn-primary' = f.button :button, t('.reset'), :type => 'reset'
Version data entries
12 entries across 12 versions & 1 rubygems