demarches-normaliennes/app/views/admin/procedures/index.html.haml
2015-11-26 16:00:12 +01:00

20 lines
No EOL
578 B
Text

= link_to("Nouvelle procédure", "/admin/procedures/new", class: 'btn btn-success', style: 'float:right; margin-top:2%;')
%h1 Gestion des procédures
%br
%br
%table.table
%thead
%th#id ID
%th#libelle Libellé
%th#organisation Organisation
%th#direction Direction
- @procedures.each do |procedure|
%tr
%td= procedure.id
%td
= link_to(procedure.libelle, "/admin/procedures/#{procedure.id}")
%td= procedure.organisation
%td= procedure.direction
.pagination
= will_paginate @procedures, renderer: BootstrapPagination::Rails