boissier_app/app/views/admin/slides/_slide.html.haml
Nicolas Bally 6abf7679fd initial
2011-05-14 13:36:30 +02:00

23 lines
701 B
Plaintext

#slide.slide{:id => slide.id}
.actions
= link_to i(:trash_stroke, :blue), [:admin, slide], :confirm => 'Voulez-vous vraiment supprimer ce slide ?', :method => :delete, :remote => true
= link_to i(:pen_alt_fill, :blue), edit_admin_slide_path(slide), :remote => true
.image_file.QI_background_resize{:style => "width:200px;height:200px;"+("background-image: url('#{slide.image_file.file.large.medium.small.thumb.url}');"if slide.image_file).to_s }
%h5.title=slide.title
.description
=simple_format slide.description
-if slide.cible
.cible=render :partial => "portlet/link_contents/"+slide.cible_type.tableize.singularize, :locals => {:cible => slide.cible}
.clear