56 lines
1.9 KiB
Text
56 lines
1.9 KiB
Text
-# Copyright (c) 2010, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
|
|
= form_for @person do |person|
|
|
%h3
|
|
Your Profile
|
|
.description
|
|
This info will be available to whomever you connect with on Diaspora.
|
|
|
|
= person.error_messages
|
|
|
|
= person.fields_for :profile do |profile|
|
|
%h4
|
|
Your name
|
|
= profile.text_field :first_name, :value => @profile.first_name, :placeholder => "First name"
|
|
= profile.text_field :last_name, :value => @profile.last_name, :placeholder => "Last name"
|
|
|
|
%h4
|
|
Your birthday
|
|
%br
|
|
= date_select person, :birthday, :order => [:month, :day, :year], :start_year => 1930, :end_year => Time.now.year
|
|
|
|
%h4
|
|
Your bio
|
|
= profile.text_area :bio, :value => @profile.bio, :rows => 5, :placeholder => "Fill me out"
|
|
|
|
%h4
|
|
Your photo
|
|
%div#image_picker
|
|
= profile.hidden_field :image_url, :value => (@profile.image_url if @profile.image_url), :id => 'image_url_field'
|
|
|
|
- unless @photos.nil? || @photos.empty?
|
|
- for photo in @photos
|
|
- if @profile.image_url && @profile.image_url.include?(photo.url(:thumb_medium))
|
|
%div.small_photo{:id => photo.url(:thumb_medium), :class=>'selected'}
|
|
= check_box_tag 'checked_photo', true, true
|
|
= link_to image_tag(photo.url(:thumb_medium)), "#"
|
|
- else
|
|
%div.small_photo{:id => photo.url(:thumb_medium)}
|
|
= check_box_tag 'checked_photo'
|
|
= link_to image_tag(photo.url(:thumb_medium)), "#"
|
|
|
|
- else
|
|
=t('.you_dont_have_any_photos')
|
|
= link_to t('.albums'), albums_path(:aspect => 'all')
|
|
=t('.page_to_upload_some')
|
|
|
|
=will_paginate @photos
|
|
|
|
= hidden_field_tag :getting_started, @step
|
|
|
|
.submit_block
|
|
= person.submit "Save and continue →"
|
|
|