12 lines
444 B
Plaintext
12 lines
444 B
Plaintext
-css_class = 'danger' if need.refused?
|
|
|
|
%tr{:id => need.id, class: css_class}
|
|
%td
|
|
=need.title
|
|
%td
|
|
=need.human_state
|
|
%td.actions{:style => "width:150px;text-align:right"}
|
|
-if need.created? or need.refused?
|
|
= link_to i(:"trash-o btn btn-default"), [:public, need], :data => {:confirm => 'Voulez-vous vraiment supprimer ce besoin ?'}, method: :delete
|
|
= link_to i(:"pencil btn btn-primary"), edit_public_need_path(need)
|