engine/app/views/locomotive/content_assets/_picker.html.haml

33 lines
925 B
Plaintext
Raw Normal View History

%script{ :type => 'text/html', :id => 'content_asset_picker' }
%h2!= t('.title')
%p.no-items{ :style => 'display: none' }!= t('.no_items')
%ul.list.content-assets{ :style => 'display: none' }
%li.clear
.dialog-actions
= link_to t('locomotive.buttons.close'), '#', :id => 'close-link'
.button-wrapper.upload
= file_field_tag 'content_asset[source]'
= link_to t('.upload'), content_assets_url(:json), :class => 'new', :id => 'upload-link'
%script{ :type => 'text/html', :id => 'content_asset' }
%h4
= link_to '{{filename}}', '{{url}}', :alt => '{{full_filename}}', :title => '{{full_filename}}'
{{#if image}}
.image
.inside
%img{ :src => '{{vignette_url}}' }
{{else}}
.icon{ :class => '{{content_type}}' }
.inside
{{content_type_text}}
{{/if}}
.actions
= link_to 'x', '#', :class => 'remove', :'data-confirm' => t('locomotive.messages.confirm')