26 lines
702 B
Text
26 lines
702 B
Text
-# Copyright (c) 2010, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3. See
|
|
-# the COPYRIGHT file.
|
|
|
|
%h1.big_text
|
|
.back
|
|
= link_to "⇧ #{@album.name}", album_path(@album)
|
|
= "#{t('.editing')} #{@photo.image}"
|
|
|
|
%div{:id => @photo.id}
|
|
|
|
#show_photo
|
|
= linked_scaled_photo @photo, @album
|
|
|
|
= form_for @photo do |p|
|
|
= p.label :caption
|
|
= p.text_field :caption, :value => @photo.caption
|
|
= p.submit
|
|
|
|
#content_bottom
|
|
.back
|
|
= link_to "⇧ #{@album.name}", album_path(@album)
|
|
-if current_user.owns? @album
|
|
.button.right
|
|
= link_to t('.delete_photo'), @photo, :confirm => t('.are_you_sure'), :method => :delete
|
|
|