OpenFest: Tweak the personal profile view
This commit is contained in:
parent
9c607b6ccd
commit
1da6c0bd20
|
@ -22,14 +22,14 @@ bg:
|
||||||
email: e-mail адресът Ви. Ще бъде видим само от организаторите
|
email: e-mail адресът Ви. Ще бъде видим само от организаторите
|
||||||
password: Парола с дължина между 8 и 128 символа
|
password: Парола с дължина между 8 и 128 символа
|
||||||
password_confirmation: Отново въведената отгоре парола
|
password_confirmation: Отново въведената отгоре парола
|
||||||
personal_profile:
|
personal_profile:
|
||||||
picture: Ваша снимка
|
picture: Ваша снимка
|
||||||
organisation: Организацията, която представлявате
|
organisation: Организацията, която представлявате
|
||||||
public_email: E-mail адрес, който ще бъде видим за посетителите
|
public_email: E-mail адрес, който ще бъде видим за посетителите
|
||||||
mobile_phone: Мобилен телефон, който ще бъде видим само за организаторите
|
mobile_phone: Мобилен телефон, който ще бъде видим само за организаторите
|
||||||
biography: Опишете се с няколко изречения, говорейки за себе си в трето лице :)
|
biography: Опишете се с няколко изречения, говорейки за себе си в трето лице :)
|
||||||
github: Потребителското Ви име в Github
|
github: Потребителското Ви име в Github
|
||||||
twitter: Потребителското Ви име в Twitter
|
twitter: Потребителското Ви име в Twitter
|
||||||
lecture:
|
lecture:
|
||||||
title: Заглавието на лекцията Ви
|
title: Заглавието на лекцията Ви
|
||||||
subtitle: Подзаглавието на лекцията Ви (ако има такова)
|
subtitle: Подзаглавието на лекцията Ви (ако има такова)
|
||||||
|
|
|
@ -33,11 +33,8 @@
|
||||||
display: block;
|
display: block;
|
||||||
border: 1px solid #CCC;
|
border: 1px solid #CCC;
|
||||||
background-color: #F1F1F1;
|
background-color: #F1F1F1;
|
||||||
|
margin-left: 12em;
|
||||||
}
|
margin-bottom: 10px;
|
||||||
|
|
||||||
img+input.image_preview {
|
|
||||||
margin-left: 12.7em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,17 +2,18 @@
|
||||||
= f.error_notification
|
= f.error_notification
|
||||||
|
|
||||||
.form-inputs
|
.form-inputs
|
||||||
= image_tag(@profile.picture.medium.url) if @profile.picture?
|
.input.file.required.personal_profile_picture
|
||||||
= f.input :picture, as: :file, required: true
|
= image_tag(@profile.picture.medium.url) if @profile.picture?
|
||||||
= f.hidden_field :picture_cache
|
= f.input :picture, as: :file, required: true, wrapper: false
|
||||||
|
|
||||||
|
= f.hidden_field :picture_cache, class: 'image_preview', wrapper: false
|
||||||
= f.input :first_name, autofocus: true
|
= f.input :first_name, autofocus: true
|
||||||
= f.input :last_name
|
= f.input :last_name
|
||||||
= f.input :public_email
|
= f.input :public_email
|
||||||
= f.input :organisation
|
= f.input :organisation
|
||||||
= f.input :github
|
= f.input :github
|
||||||
= f.input :twitter
|
= f.input :twitter
|
||||||
= f.input :mobile_phone
|
= f.input :mobile_phone, input_html: {value: @profile.mobile_phone.try(:phony_formatted, format: :international)}
|
||||||
= f.input :biography
|
= f.input :biography
|
||||||
|
|
||||||
.form-actions
|
.form-actions
|
||||||
|
|
Loading…
Reference in New Issue