57 lines
1.7 KiB
Text
57 lines
1.7 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.
|
|
|
|
- content_for :head do
|
|
:javascript
|
|
$(document).ready(function(){
|
|
$('.delete').bind('ajax:success', function() {
|
|
$(this).closest('li').fadeOut(200);
|
|
});
|
|
$('.delete').bind('ajax:failure', function() {
|
|
alert("#{t('status_message.destroy.failure')}");
|
|
});
|
|
});
|
|
|
|
|
|
#profile
|
|
.profile_photo
|
|
= person_image_link(person, :size => :thumb_large, :to => :photos)
|
|
|
|
- if person == current_user.person
|
|
%p
|
|
= link_to t('people.profile_sidebar.edit_my_profile'), edit_profile_path
|
|
|
|
%hr{:style=>"width:300px;"}
|
|
|
|
%ul
|
|
- unless person == current_user.person
|
|
%li
|
|
= render :partial => 'people/aspect_list',
|
|
:locals => {:person => person,
|
|
:contact => contact,
|
|
:aspects_with_person => @aspects_with_person,
|
|
:aspects_without_person => @all_aspects.reject{ |aspect| @aspects_with_person.include?(aspect)}}
|
|
%br
|
|
%hr{:style=>"width:300px;"}
|
|
|
|
-if (contact && !contact.pending?) || person == current_user.person || @incoming_request
|
|
%ul#profile_information
|
|
%li
|
|
- unless person.profile.bio.blank?
|
|
%h4
|
|
=t('.bio')
|
|
= markdownify(person.profile.bio, :newlines => true)
|
|
|
|
%li.span-8.last
|
|
.span-4
|
|
- unless person.profile.gender.blank?
|
|
%h4
|
|
=t('.gender')
|
|
= person.profile.gender
|
|
|
|
.span-4.last
|
|
- unless person.profile.birthday.blank?
|
|
%h4
|
|
=t('.born')
|
|
= birthday_format(person.profile.birthday)
|