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