54 lines
1.3 KiB
Plaintext
54 lines
1.3 KiB
Plaintext
.leftlist
|
||
= f.label :name, t("activerecord.attributes.user.name")
|
||
.rightlist
|
||
= f.text_field :name
|
||
.both
|
||
.leftlist
|
||
= f.label :email, t("activerecord.attributes.user.email")
|
||
.rightlist
|
||
= f.text_field :email
|
||
.both
|
||
.leftlist
|
||
= f.label :site, t("activerecord.attributes.user.site")
|
||
.rightlist
|
||
= f.text_field :site
|
||
.both
|
||
.leftlist
|
||
= f.label :language, t("activerecord.attributes.user.language")
|
||
.rightlist
|
||
= f.select :language, User::LANGUAGES_FOR_SELECT
|
||
.both
|
||
.leftlist
|
||
= f.label :company, t("activerecord.attributes.user.company")
|
||
.rightlist
|
||
= f.text_field :company
|
||
.both
|
||
.leftlist
|
||
= f.label :location, t("activerecord.attributes.user.location")
|
||
.rightlist
|
||
= f.text_field :location
|
||
.both
|
||
.leftlist
|
||
= f.label :avatar, t("layout.users.avatar_with_size", :max => number_to_human_size(User::MAX_AVATAR_SIZE))
|
||
.rightlist
|
||
= image_tag(avatar_url(@user, :medium))
|
||
.leftlist
|
||
.rightlist
|
||
.check
|
||
%span#niceCheckbox1.niceCheck-main
|
||
= check_box_tag "delete_avatar", 1, false, :class => 'niceCheckbox1'
|
||
.forcheck= t('layout.users.delete_avatar')
|
||
.both
|
||
= f.file_field :avatar
|
||
.both
|
||
.leftlist
|
||
= f.label :professional_experience, t("activerecord.attributes.user.professional_experience")
|
||
.rightlist
|
||
= f.text_area :professional_experience
|
||
.both
|
||
.leftlist
|
||
\
|
||
.rightlist
|
||
= submit_tag t("layout.save")
|
||
.both
|