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