56 lines
1.9 KiB
Text
56 lines
1.9 KiB
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 :photos
|
|
|
|
= render 'shared/author_info', :person => @photo.person, :post => @photo
|
|
|
|
.span-14.append-1.last
|
|
#show_photo{:data=>{:guid=>@photo.id}}
|
|
-if @ownership
|
|
= image_tag 'ajax-loader.gif', :id => "photo_spinner", :class => "hidden"
|
|
= image_tag @photo.url(:scaled_full)
|
|
.photo_options{:data=>{:actor=>"#{@photo.person.owner.id}",:actor_person=>"#{@photo.person.id}",:image_url=>"#{@photo.url(:thumb_large)}"}}
|
|
= link_to t('.make_profile_photo'), {:controller => "photos", :action => "make_profile_photo", :photo_id => @photo.id}, :remote => true, :class => 'make_profile_photo'
|
|
|
|
|
= link_to t('.edit'), '#', :id => "edit_photo_toggle"
|
|
|
|
-else
|
|
= image_tag @photo.url(:scaled_full)
|
|
|
|
#caption
|
|
= @photo.caption
|
|
|
|
%br
|
|
|
|
-if @ownership
|
|
#photo_edit_options
|
|
%h4= t('.edit_delete_photo')
|
|
%p
|
|
= form_for @photo, :remote => true do |p|
|
|
= p.text_field :caption, :value => @photo.caption
|
|
= p.submit t('.update_photo')
|
|
%p
|
|
= button_to t('.delete_photo'), @photo, :confirm => t('are_you_sure'), :method => :delete
|
|
|
|
.span-9.last
|
|
- if @photo.status_message_id
|
|
#original_post_info
|
|
%h4{:style=>"position:relative;"}
|
|
= t('.original_post')
|
|
= link_to "#{t('.view')} →", @photo.status_message
|
|
|
|
%p
|
|
= @photo.status_message.message
|
|
|
|
%p
|
|
- for photo in @photo.status_message.photos
|
|
= link_to (image_tag photo.url(:thumb_small)), object_path(photo)
|
|
|
|
%h4= t('_comments')
|
|
|
|
%div{:id => 'photo_stream', :class => 'stream show'}
|
|
%li.message{:data=>{:guid=>@parent.id}}
|
|
= render "comments/comments", :post_id => @parent.id, :comment_hashes => @comment_hashes
|