18 lines
565 B
Plaintext
18 lines
565 B
Plaintext
%tr#s_inventaire_row{:id => s_inventaire.id}
|
|
-tr = {}
|
|
|
|
|
|
|
|
-tr[:actions] = capture do
|
|
%td.actions
|
|
= link_to i(:"trash-o"), [:admin, s_inventaire], method: :delete, data: { confirm: 'Voulez-vous vraiment supprimer cet enregistrement ? ' } , :remote => true
|
|
= link_to i(:pencil), edit_admin_s_inventaire_path(s_inventaire), :remote => true
|
|
= link_to i(:eye), admin_s_inventaire_path(s_inventaire), :remote => false
|
|
|
|
|
|
|
|
=render :partial => "qi/qi_ordered_table_object", :locals => {:tr => tr, :object => s_inventaire}
|
|
|
|
|
|
|
|
|