Welcome to mirror list, hosted at ThFree Co, Russian Federation.

finder.html.haml « services « views « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f4e662e406e94ca53da0cf51ca6a846e75e9b06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
-#   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 :finder

#section_header
  %h2
    = t('contacts.index.title')

= render 'shared/contact_sidebar'

.span-18.last.searchable
  /= search_field_tag :contact_search, "", :id => "contact_list_search", :class => 'contact_list_search', :results => 5, :placeholder => t('search')
  %h3
    = t('.service_friends', :service => params[:provider].titleize)
  #people_stream.stream.contacts
    - if @friends.size > 0
      = render :partial => 'remote_friend', :collection => @friends, :as => :friend

      = will_paginate @friends
    - else
      .no_contacts
        = link_to(image_tag("social_media_logos/facebook-48x48.png"), "/auth/facebook")
        %br
        %br
        %h4
          = link_to t('services.index.connect_to_facebook'), '/auth/facebook'