diaspora/app/views/services/finder.html.haml
2011-01-26 12:16:46 -08:00

27 lines
793 B
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
= include_javascripts :aspects
%h3
facebook friend finder
.contact_list
= search_field_tag :contact_search, "", :class => 'contact_list_search', :results => 5, :placeholder => t('shared.contact_list.all_contacts')
%ul
- for friend in @friends
%li
%h4.name
= link_to friend[:name], '#'
- if person = friend[:person]
.right
= link_to t('people.show.start_sharing'),
{:controller => "people",
:action => "share_with",
:id => person.id},
:class => 'button',
:rel => 'facebox'