30 lines
773 B
Plaintext
30 lines
773 B
Plaintext
<h1><%= @photo.title%></h1>
|
|
|
|
<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>
|
|
</div>
|
|
|
|
<p><%= @photo.description %></p>
|
|
<p>Tagged with:
|
|
<% for tag in @photo.tags.map{|tag|tag.title}.sort %>
|
|
<%= link_to tag, tag_photos_path(tag) %>
|
|
<% end %>
|
|
|
|
<% content_for :action_links do %>
|
|
<% if has_role?("admin") %>
|
|
<%= link_to "Edit photo", edit_photo_path(@photo) %>
|
|
<% end %>
|
|
<% end %> |