photomix/app/views/collections/index.html.erb
Espen Antonsen 3f22d112c1 debug info
2009-06-15 00:44:10 +02:00

13 lines
420 B
Plaintext

<h2>Collections</h2>
<div id="multipleimages">
<% for collection in @collections %>
<div class="thumb">
<h3><%= link_to collection.title, collection %></h3>
<%= link_to (image_tag collection.albums.find(:first).photos.first.path_modified_public('collection') ), collection_path(collection) %>
</div>
<% end %>
</div>
<% if has_role?("admin") %>
<br /><%= link_to "New collection", new_collection_path %>
<% end %>