2010-10-11 14:26:46 +00:00
|
|
|
- edit = local_assigns.key?(:edit) ? edit : true
|
|
|
|
|
2011-07-04 17:40:14 +00:00
|
|
|
%li{ :class => (asset.new_record? ? 'new-asset' : 'asset') }
|
2010-10-07 00:45:41 +00:00
|
|
|
%em
|
2011-11-21 01:27:05 +00:00
|
|
|
%strong= link_to asset.local_path(!edit), edit ? edit_theme_asset_path(asset) : asset.source.url, :'data-local-path' => asset.local_path
|
2010-10-07 00:45:41 +00:00
|
|
|
.more
|
|
|
|
%span.size= number_to_human_size(asset.size)
|
|
|
|
—
|
|
|
|
%span!= t('.updated_at')
|
2010-10-11 14:26:46 +00:00
|
|
|
%span.date= l asset.updated_at, :format => :short
|
2010-10-07 00:45:41 +00:00
|
|
|
|
2011-08-20 09:13:06 +00:00
|
|
|
- if edit && can?(:destroy, asset)
|
2011-11-21 01:27:05 +00:00
|
|
|
= link_to image_tag('admin/list/icons/trash.png'), theme_asset_path(asset), :class => 'remove', :confirm => t('locomotive.messages.confirm'), :method => :delete
|