photomix/app/views/photos/show.html.erb

27 lines
729 B
Plaintext
Raw Normal View History

2009-05-25 21:39:43 +02:00
<h1><%= @photo.title%></h1>
2009-06-11 13:05:09 +02:00
<div id="fullimage">
<div id="navigation">
<p class="links">
<% unless @previous.nil?%>
<%= link_to "Previous", [ @photo.album.collections.first, @photo.album, @previous] %>
<% unless @next.nil? %>
|
<% end %>
<% end %>
<% unless @next.nil? %>
<%= link_to "Next", [ @photo.album.collections.first, @photo.album, @next] %>
<% end %>
</p>
</div>
<p><%= image_tag @photo.path_modified_public("single") %></p>
2009-06-11 13:05:09 +02:00
</div>
2009-05-25 21:39:43 +02:00
<p><%= @photo.description %></p>
2009-06-29 00:17:06 +02:00
<p>Tagged with: <%= @photo.tags.find(:all).map {|tag| tag.title } %></p>
2009-06-09 00:30:22 +02:00
2009-06-16 21:43:03 +02:00
<% content_for :action_links do %>
2009-06-09 00:30:22 +02:00
<% if has_role?("admin") %>
2009-06-16 21:43:03 +02:00
<br /><%= link_to "Edit photo", edit_photo_path(@photo) %>
2009-06-09 00:30:22 +02:00
<% end %>
2009-06-16 21:43:03 +02:00
<% end %>