<%= @collection.title %>
<%= @collection.description %>
<%= render :partial => 'albums/row_collections' %>
<%= content_for :action_links do %>
<% if current_user and current_user.has_role?("admin") %>
<%= link_to "PDF", collection_path(@collection, :format => 'pdf') %>
<%= link_to "Edit collection", edit_collection_path(@collection) %>
<%= link_to "New album", new_collection_album_path(@collection) %>
<% end %>
<% end %>