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

index.html.haml « people « views « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 672ee0db0c0d6c8c33cceee08f5efd875857513b (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
30
31
32
33
34
35
36
37
38
39
40
-#   Copyright (c) 2010-2011, Diaspora Inc.  This file is
-#   licensed under the Affero General Public License version 3 or later.  See
-#   the COPYRIGHT file.

- content_for :page_title do
  = t('search')

- content_for :head do
  = javascript_include_tag 'contact-list'

.container#people_search
  .row
    .page-header
      = search_header
  .row
    .col-md-8
      #people-stream.stream
        - if @hashes.empty?
          %p
            - if @background_query.present?
              = t(".searching")
              .loader
                .spinner
            - else
              = t('.no_one_found')
        - else
          - for hash in @hashes
            = render partial: 'people/person', locals: hash

          = will_paginate @people, renderer: WillPaginate::ActionView::BootstrapLinkRenderer

    .col-md-4
      - if AppConfig.settings.invitations.open?
        %h4
          = t('.couldnt_find_them')
        %p
          = t('.search_handle')
        %h4
          = t('.send_invite')
        = render "shared/invitations"