31 lines
958 B
Text
31 lines
958 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
|
|
|
|
- content_for :page_title do
|
|
= @aspect.name.html_safe
|
|
|
|
.span-24.last
|
|
%h2{:style=>"position:relative;margin-bottom:0;"}
|
|
= @aspect
|
|
|
|
%span.aspect_contact_count{:style=>"color:#999;font-size:14px;"}
|
|
= t('contacts', :count=>@aspect_contacts_count)
|
|
= link_to t('.edit_aspect'), "#", :id => "edit_aspect_trigger"
|
|
|
|
.span-8.append-1
|
|
= render 'aspects/aspect_contacts', :contacts => @aspect_contacts, :aspect => @aspect
|
|
= render 'aspects/edit_aspect_pane', :contacts => @all_contacts, :aspect => @aspect
|
|
|
|
.span-15.last
|
|
= render 'shared/publisher', :aspect => @aspect
|
|
|
|
#main_stream.stream{:data => {:guids => @aspect.id}}
|
|
= render 'shared/stream', :posts => @posts
|
|
%a.paginate
|
|
= t("more")
|
|
=will_paginate @posts
|