ecole_eft_app/app/views/admin/articles/_article.html.haml
2013-07-18 01:23:48 +02:00

16 lines
485 B
Plaintext

%tr#article_row.article_row{:id => article.id, :class => ("warning" if !article.enabled)}
%td{:style => "width:200px"}= l(article.published_at, :format => :date) if article.published_at?
%td=article.title
%td{:style => "width:70px"}
= link_to i(:trash), [:admin, article], :confirm => 'Voulez-vous vraiment supprimer cet article ?', :method => :delete, :remote => true
= link_to i(:pencil), edit_admin_article_path(article), :style => "padding:0px 0px 0px 0px;"