demarches-normaliennes/app/views/users/dossiers/index.html.haml
2015-11-27 11:09:45 +01:00

20 lines
No EOL
492 B
Text

%h1#users_dossiers_index Vos dossiers
%br
%br
%table.table
%thead
%th Procédure
%th Nom du Projet
%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))
%td{id: "dossier_#{dossier.id}_state"}= dossier.state_fr
%td= dossier.last_update
.pagination
= will_paginate @dossiers, renderer: BootstrapPagination::Rails