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

10 lines
565 B
Plaintext

%tr#article_row.article_row{:id => article.id}
%td.QI_padding_small{:style => "width:130px;"}
.QI_background_resize{:style => "width:120px;height:120px;"+("background-image: url('#{article.image_file.file.large.medium.small.thumb.url}');"if article.image_file).to_s }
%td.QI_padding_small=article.title
%td.actions.QI_padding_small
= link_to i(:trash_stroke, :blue), [:admin, article], :confirm => 'Voulez-vous vraiment supprimer cet article ?', :method => :delete, :remote => true
= link_to i(:pen_alt_fill, :blue), edit_admin_article_path(article)