demarches-normaliennes/app/views/admin/procedures/index.html.haml

17 lines
497 B
Text
Raw Normal View History

= link_to("Nouvelle procédure", "/admin/procedures/new", class: 'btn btn-success', style: 'float:right; margin-top:2%;')
%h1 Gestion des procédures
2015-10-26 15:54:20 +01:00
%br
%br
%table.table
2015-11-04 17:27:01 +01:00
%thead
%th#id ID
%th#libelle Libellé
%th#organisation Organisation
%th#direction Direction
2015-10-26 15:54:20 +01:00
- @procedures.each do |procedure|
%tr
%td= procedure.id
%td
= link_to(procedure.libelle, "/admin/procedures/#{procedure.id}")
%td= procedure.organisation
%td= procedure.direction