Sha256: 7cd75408bc4414ab5a25f9d5ac01a54871ea625f0e851c032bc9e32f4e6b6edb
Contents?: true
Size: 1000 Bytes
Versions: 24
Compression:
Stored size: 1000 Bytes
Contents
<%= render 'menu' %> <div id="browser-list"> <ul> <% @assets.each do |asset| %> <li class="file" title="<%= h( asset.title ) %>"> <div class="file-detail" id="asset-<%= asset.id %>"> <span class="file-title"><%= h( asset.title ) %></span> <%= (asset.image? or asset.video?) ? image_tag( asset.url('70x70#', :jpg) ) : asset_icon(asset) %> </div> <%= link_to 'Show', noodall_admin_asset_path(asset, :readonly => readonly), :class => 'show button', :title => 'View this asset' %> <%= link_to 'Add', asset.url, :class => 'add button', :title => 'Add this asset' %> </li> <% end %> </ul> <%= will_paginate(@assets, :previous_label => 'Previous', :next_label => 'Next') %> </div> <div id="tags"> <h2>Tags</h2> <ul> <% for tag in @tags %> <li><%= link_to "#{h( tag.name )} (#{tag.count})", :tag => tag.name %></li> <% end -%> </ul> <%= link_to 'All Tags', noodall_admin_asset_tags_path(controller.action_name) %> </div>
Version data entries
24 entries across 24 versions & 1 rubygems