demarches-normaliennes/app/views/users/dossiers/_list.html.haml

17 lines
451 B
Text
Raw Normal View History

%table.table
%thead
%th Procédure
%th Nom du Projet
2015-09-25 11:42:20 +02:00
%th Etat
%th Mise à jour
- @dossiers.each do |dossier|
%tr
%td
= dossier.procedure.libelle
%td
= link_to(dossier.nom_projet, users_dossier_recapitulatif_path(dossier))
2015-12-24 16:12:16 +01:00
%td{id: "dossier_#{dossier.id}_state"}= dossier.display_state
2015-11-26 12:29:34 +01:00
%td= dossier.last_update
.pagination
= will_paginate @dossiers, renderer: BootstrapPagination::Rails