54 lines
2.1 KiB
Plaintext
54 lines
2.1 KiB
Plaintext
<% throw_content :for_sidebar do -%>
|
|
<% if allowed_to?(:create_albums) -%><a href="<%= url(:new_album) -%>"><img src="/images/folder-new.png" alt="Create Album" /> Create An Album</a><br /><% end -%>
|
|
<% if allowed_to?(:edit_album) -%><a href="<%= url(:edit_album, :id => @album.name.gsub(/ /, '_')) -%>" rel="nofollow"><img src="/images/document-save.png" /> Edit Album</a><br /><% end %>
|
|
<% if allowed_to?(:delete_albums) -%><a href="<%= url(:delete_album, :id => @album.name.gsub(/ /, '_')) -%>" onclick="if(!confirm('Are you sure you want to delete this album?')){return false;}"><img src="/images/edit-delete.png" /> Destroy Album</a><br /><% end %>
|
|
<% if allowed_to?(:upload_images) -%><a href="<%= url(:new_photo, :photo => { :album_id => @album.id }) -%>"><img src="/images/emblem-photos.png" /> Upload Image</a><br /><% end %>
|
|
|
|
<% unless @album.tags.empty? -%>
|
|
<div class="tag_cloud">
|
|
<p>Album Tags</p>
|
|
<%= @album.tags.collect { |t| "<a href='#{url(:tag, :id => t.name)}' title='#{t.name}'>#{t.name}</a>" }.join(' ') %>
|
|
</div>
|
|
<% end -%>
|
|
|
|
<% ptags = @photos.collect { |p| p.photo_tags.collect { |pt| pt.tag.name } }.flatten.uniq -%>
|
|
<% unless ptags.empty? -%>
|
|
<div class="tag_cloud">
|
|
<p>Tags in Photos</p>
|
|
<%= ptags.collect { |t| "<a href='#{url(:tag, :id => t)}' title='#{t}'>#{t}</a>" }.join(' ') %>
|
|
</div>
|
|
<% end -%>
|
|
<% end -%>
|
|
|
|
<% throw_content :for_stylesheet do -%>
|
|
|
|
.photo_collection_item {
|
|
word-wrap: break-word;
|
|
max-width: 150px;
|
|
max-height: 150px;
|
|
margin-top: 15px;
|
|
margin-bottom: 15px;
|
|
padding: 3px;
|
|
border: 1px solid #BBB;
|
|
float: left;
|
|
position: relative;
|
|
}
|
|
|
|
.col_1, .col_2, .col_0 {
|
|
margin-left: 15px;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
<% end -%>
|
|
|
|
<div class="hentry">
|
|
<h1><%= @album.name -%></h1>
|
|
|
|
<% @photos.each_with_index do |photo, idx| -%>
|
|
<div class="photo_collection_item col_<%= (idx + 1) % 3 -%>"><a href="<%= url(:photo, photo) -%>" rel="nofollow" onclick="window.open(this.href);return false;"><img src="<%= thumbnail_photo_url(photo) -%>" /></a></div>
|
|
<% if (idx + 1) % 3 == 0 or @photos.last == photo -%><br style="clear:both" /><% end -%>
|
|
<% end -%>
|
|
</div>
|
|
|
|
<%= partial 'shared/pagination_links' %>
|