20 lines
628 B
Text
20 lines
628 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.
|
|
|
|
.contact_list#aspects_list
|
|
%ul
|
|
- for aspect in aspects_with_person
|
|
%li{:data=>{:guid=>aspect.id}}
|
|
%span.name
|
|
= link_to aspect.name, aspect
|
|
.right
|
|
= aspect_membership_button(aspect.id, contact, person)
|
|
|
|
- for aspect in aspects_without_person
|
|
%li{:data=>{:guid=>aspect.id}}
|
|
%span.name
|
|
= link_to aspect.name, aspect
|
|
.right
|
|
= aspect_membership_button(aspect.id, contact, person)
|
|
|