diaspora/app/views/photos/show.html.haml
2010-07-21 15:08:00 -07:00

26 lines
694 B
Text

%h3
viewing photos from album
=link_to @album.name, album_path(@album)
%div{:id => @photo.id}
= link_to "full size", @photo.image.url
%br
#show_photo
= link_to (image_tag @photo.image.url(:scaled_full)), photo_path(@album.next_photo(@photo))
#photo_pagination
= link_to "<< previous", photo_path(@album.prev_photo(@photo))
= link_to "next >>", photo_path(@album.next_photo(@photo))
%p
= link_to "Destroy", @photo, :confirm => 'Are you sure?', :method => :delete
|
= link_to "<< back to album", album_path(@album)
%h4{:class => "show_post_comments"}
= "comments (#{@photo.comments.count})"
= render "comments/comments", :post => @photo