33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
-# Copyright (c) 2011, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
/- content_for :head do
|
|
/ = include_javascripts :aspects
|
|
|
|
#aspect_edit_pane
|
|
#facebox_header
|
|
.right
|
|
= t('contacts', :count =>@contacts.count)
|
|
|
|
%h3#aspect_name_title
|
|
%span.name= "People sharing with you:"
|
|
|
|
- if @contacts.count > 0
|
|
.contact_list
|
|
= search_field_tag :contact_search, "", :class => 'contact_list_search', :results => 5, :placeholder => "People sharing with you"
|
|
%ul
|
|
- for contact in @contacts
|
|
%li{:data=>{:contact_id=>contact.id}}
|
|
= person_image_tag contact.person
|
|
%h4.name
|
|
= link_to contact.person.name, contact.person
|
|
.description
|
|
= contact.person.diaspora_handle
|
|
|
|
.right
|
|
= render 'aspect_dropdown', :contact => contact, :person => contact.person, :hang => 'right'
|
|
|
|
%br
|
|
%div{:style => "text-align:right;"}
|
|
= link_to t('aspects.edit.done'), '#', :class => 'button', :rel => 'close'
|