Sha256: 395d990278b6b69824dea9811c4ab15bff8b283847a3cd68f718279a0d776d77

Contents?: true

Size: 903 Bytes

Versions: 12

Compression:

Stored size: 903 Bytes

Contents

<%= f.input :gender,
  collection: @user_genders,
  prompt: Alchemy.t('Please choose'),
  input_html: {class: 'alchemy_selectbox'} %>
<%= f.input :firstname %>
<%= f.input :lastname %>
<%= f.input :login, autofocus: true %>
<%= f.input :email %>
<%= f.input :language,
  collection: translations_for_select,
  include_blank: false,
  input_html: {class: 'alchemy_selectbox'} %>
<%= f.input :password %>
<%= f.input :password_confirmation %>
<% if can_update_role? %>
  <%= f.input :alchemy_roles,
    collection: @user_roles,
    input_html: {multiple: true, class: 'alchemy_selectbox'},
    as: 'select' %>
<% end %>
<% unless while_signup? %>
  <div class="input tag_list">
    <%= f.label :tag_list %>
    <%= render 'alchemy/admin/partials/autocomplete_tag_list',
      f: f,
      object: @user %>
  </div>
<% end %>
<%= f.input :send_credentials, as: 'boolean' %>
<%= f.submit Alchemy.t(:save) %>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
alchemy-devise-4.3.1 app/views/alchemy/admin/users/_fields.html.erb
alchemy-devise-4.3.0 app/views/alchemy/admin/users/_fields.html.erb
alchemy-devise-4.2.1 app/views/alchemy/admin/users/_fields.html.erb
alchemy-devise-4.2.0 app/views/alchemy/admin/users/_fields.html.erb
alchemy-devise-4.1.0 app/views/alchemy/admin/users/_fields.html.erb
alchemy-devise-4.1.0.beta app/views/alchemy/admin/users/_fields.html.erb
alchemy-devise-4.0.0 app/views/alchemy/admin/users/_fields.html.erb
alchemy-devise-3.6.0 app/views/alchemy/admin/users/_fields.html.erb
alchemy-devise-3.5.0 app/views/alchemy/admin/users/_fields.html.erb
alchemy-devise-3.5.0.beta app/views/alchemy/admin/users/_fields.html.erb
alchemy-devise-3.4.0 app/views/alchemy/admin/users/_fields.html.erb
alchemy-devise-3.3.0 app/views/alchemy/admin/users/_fields.html.erb