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

_aspect_listings.haml « contacts « views « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2966dc7b2595b1ce2d4aac14db159ed331748f0a (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
-#   Copyright (c) 2010-2011, Diaspora Inc.  This file is
-#   licensed under the Affero General Public License version 3 or later.  See
-#   the COPYRIGHT file.

%ul#aspect_nav.left_nav
  %li.all_aspects{:class => ("active" if params["set"] != "all" && params["set"] != "only_sharing" && !@featured && !@finder)}
    %a.home_selector{:href => contacts_path, :class => ("sub_selected" if params["a_id"])}
      .contact_count
        = my_contacts_count
      = t('contacts.index.my_contacts')

    %ul.sub_nav
      - for aspect in all_aspects
        %li{:data => {:aspect_id => aspect.id}, :class => ("active" if params["a_id"].to_i == aspect.id)}
          %a.aspect_selector{:href => contacts_path(:a_id => aspect.id)}
            .contact_count
              = aspect.contacts.size
            = aspect

      %li
        = link_to t('aspects.aspect_listings.add_an_aspect'), new_aspect_path, :class => "new_aspect", :rel => "facebox"

  %li.all_contacts{:class => ("active" if params["set"] == "all" || params["set"] == "only_sharing")}
    %a.aspect_selector{:href => contacts_path(:set => "all"), :class => ("sub_selected" if params["set"] == "only_sharing")}
      .contact_count
        = all_contacts_count
      = t('contacts.index.all_contacts')

    %ul.sub_nav
      %li{:class => ("active" if params["set"] == "only_sharing")}
        %a.aspect_selector{:href => contacts_path(:set => "only_sharing")}
          .contact_count
            = only_sharing_count
          = t('contacts.index.only_sharing_with_me')