27 lines
No EOL
789 B
Text
27 lines
No EOL
789 B
Text
- unless smart_listing.empty?
|
|
%table.table
|
|
%tr
|
|
%th{colspan: 4}
|
|
%h4 Lien vers les procédures TPS
|
|
%tr
|
|
%th= smart_listing.sortable 'ID', 'id'
|
|
%th= smart_listing.sortable 'Titre', 'libelle'
|
|
%th Description
|
|
%th= smart_listing.sortable 'Organisation', 'organisation'
|
|
|
|
- smart_listing.collection.each do |procedure|
|
|
- procedure = procedure.decorate
|
|
%tr
|
|
%td
|
|
= procedure.id
|
|
%td.col-md-4.col-sm-4.col-xs-4.col-lg-4
|
|
= link_to procedure.libelle, procedure.lien
|
|
%td
|
|
= procedure.description
|
|
%td.col-md-3.col-sm-3.col-xs-3.col-lg-3
|
|
= procedure.organisation
|
|
|
|
= smart_listing.paginate
|
|
= smart_listing.pagination_per_page_links
|
|
- else
|
|
%p Aucune procédure trouvée |