photomix/app/views/collections/index.html.erb

13 lines
420 B
Plaintext
Raw Normal View History

2009-06-11 13:05:09 +02:00
<h2>Collections</h2>
<div id="multipleimages">
2009-06-03 01:33:39 +02:00
<% for collection in @collections %>
2009-06-11 13:05:09 +02:00
<div class="thumb">
<h3><%= link_to collection.title, collection %></h3>
2009-06-15 00:44:10 +02:00
<%= link_to (image_tag collection.albums.find(:first).photos.first.path_modified_public('collection') ), collection_path(collection) %>
2009-06-11 13:05:09 +02:00
</div>
<% end %>
</div>
<% if has_role?("admin") %>
<br /><%= link_to "New collection", new_collection_path %>
<% end %>