23 lines
820 B
Text
23 lines
820 B
Text
- unless smart_listing.empty?
|
|
%table.table
|
|
%thead
|
|
%th.col-md-4.col-lg-4= smart_listing.sortable 'Procédure', 'procedure.libelle'
|
|
%th.col-md-4.col-lg-4= smart_listing.sortable 'Nom du Projet', 'nom_projet'
|
|
%th.col-md-2.col-lg-2= smart_listing.sortable 'État', 'state'
|
|
%th.col-md-2.col-lg-2= smart_listing.sortable 'Date de mise à jour', 'updated_at'
|
|
- @dossiers.each do |dossier|
|
|
- dossier = dossier.decorate
|
|
%tr
|
|
%td
|
|
= dossier.procedure.libelle
|
|
%td
|
|
= link_to(dossier.nom_projet, users_dossier_recapitulatif_path(dossier))
|
|
%td{id: "dossier_#{dossier.id}_state"}= dossier.display_state
|
|
%td= dossier.last_update
|
|
|
|
= smart_listing.paginate
|
|
= smart_listing.pagination_per_page_links
|
|
|
|
- else
|
|
%h4.center
|
|
Aucun dossier
|