52 lines
1.3 KiB
Text
52 lines
1.3 KiB
Text
= form_for @user do |f|
|
|
|
|
%h1.big_text
|
|
.back
|
|
= link_to "⇧ home", root_path
|
|
|
|
Editing your profile
|
|
|
|
|
|
= f.error_messages
|
|
|
|
= f.fields_for :profile do |p|
|
|
|
|
%h3 Picture
|
|
%div#image_picker
|
|
= p.hidden_field :image_url, :value => @profile.image_url, :id => 'image_url_field'
|
|
- for photo in @photos
|
|
- if photo.image.url(:thumb_medium) == @profile.image_url
|
|
%div.small_photo{:id => photo.image.thumb_medium.url, :class=>'selected'}
|
|
= check_box_tag 'checked_photo', true, true
|
|
= link_to image_tag(photo.image.url(:thumb_medium)), "#"
|
|
- else
|
|
%div.small_photo{:id => photo.image.thumb_medium.url}
|
|
= check_box_tag 'checked_photo'
|
|
= link_to image_tag(photo.image.url(:thumb_medium)), "#"
|
|
=will_paginate @photos
|
|
|
|
|
|
%h3 Info
|
|
%p
|
|
= p.label :first_name
|
|
= p.text_field :first_name, :value => @profile.first_name
|
|
%p
|
|
= p.label :last_name
|
|
= p.text_field :last_name, :value => @profile.last_name
|
|
|
|
%p
|
|
= f.label :email
|
|
= f.text_field :email
|
|
|
|
%p
|
|
= f.label :url
|
|
= f.text_field :url
|
|
|
|
#submit_block
|
|
= link_to "Cancel", root_path
|
|
or
|
|
= f.submit "Update Profile"
|
|
|
|
#content_bottom
|
|
.back
|
|
= link_to "⇧ home", root_path
|