22 lines
877 B
Text
22 lines
877 B
Text
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
|
|
.reshare
|
|
- if post
|
|
.content
|
|
.from
|
|
= person_link(post.author, :class => "hovercardable")
|
|
|
|
- if post.activity_streams?
|
|
= link_to image_tag(post.image_url, 'data-small-photo' => post.image_url, 'data-full-photo' => post.image_url, :class => 'stream-photo'), post.object_url, :class => "stream-photo-link"
|
|
- else
|
|
= render 'status_messages/status_message', :post => post, :photos => post.photos
|
|
- if defined?(current_user) && current_user && (post.author_id != current_user.person.id) && (post.public?) && !reshare?(post)
|
|
.reshare_action
|
|
= reshare_link(post)
|
|
= link_to t(".show_original"), post_path(post)
|
|
|
|
- else
|
|
= t('.deleted')
|