fix(procedures): turbo force server, fix table JS style
This commit is contained in:
parent
5d6e35c540
commit
8ebdb00fc2
1 changed files with 35 additions and 34 deletions
|
@ -15,14 +15,6 @@
|
||||||
.link.fr-mx-1w= link_to 'Voir les administrateurs', administrateurs_admin_procedures_path(@filter.params), class: 'fr-btn fr-btn--secondary'
|
.link.fr-mx-1w= link_to 'Voir les administrateurs', administrateurs_admin_procedures_path(@filter.params), class: 'fr-btn fr-btn--secondary'
|
||||||
.link.fr-mx-1w{ "data-turbo": "false" }= link_to 'Exporter les résultats', all_admin_procedures_path(@filter.params.merge(format: :xlsx)), class: 'fr-btn fr-btn--secondary'
|
.link.fr-mx-1w{ "data-turbo": "false" }= link_to 'Exporter les résultats', all_admin_procedures_path(@filter.params.merge(format: :xlsx)), class: 'fr-btn fr-btn--secondary'
|
||||||
|
|
||||||
.fr-table.fr-table--sm.fr-table--no-scroll.fr-table--bordered
|
|
||||||
.fr-table__wrapper
|
|
||||||
.fr-table__container
|
|
||||||
.fr-table__content
|
|
||||||
%table
|
|
||||||
%caption
|
|
||||||
= "#{@procedures.total_count} #{t('pluralize.procedures', count: @procedures.total_count)}"
|
|
||||||
%span.hidden.spinner{ 'aria-hidden': 'true', 'data-turbo-target': 'spinner' }
|
|
||||||
- if @filter.libelle
|
- if @filter.libelle
|
||||||
.selected-query.fr-mb-2w
|
.selected-query.fr-mb-2w
|
||||||
= link_to @filter.libelle, all_admin_procedures_path(@filter.without(:libelle)), class: 'fr-tag fr-tag--dismiss fr-mb-1w'
|
= link_to @filter.libelle, all_admin_procedures_path(@filter.without(:libelle)), class: 'fr-tag fr-tag--dismiss fr-mb-1w'
|
||||||
|
@ -56,6 +48,15 @@
|
||||||
.selected-from-publication-date.fr-mb-2w
|
.selected-from-publication-date.fr-mb-2w
|
||||||
= link_to "Depuis #{l(@filter.from_publication_date)}", all_admin_procedures_path(@filter.without(:from_publication_date)), class: 'fr-tag fr-tag--dismiss fr-mb-1w'
|
= link_to "Depuis #{l(@filter.from_publication_date)}", all_admin_procedures_path(@filter.without(:from_publication_date)), class: 'fr-tag fr-tag--dismiss fr-mb-1w'
|
||||||
|
|
||||||
|
.fr-table.fr-table--sm.fr-table--no-scroll.fr-table--bordered{ 'data-turbo': 'true', 'data-turbo-force': 'server' }
|
||||||
|
.fr-table__wrapper
|
||||||
|
.fr-table__container
|
||||||
|
.fr-table__content
|
||||||
|
%table
|
||||||
|
%caption
|
||||||
|
= "#{@procedures.total_count} #{t('pluralize.procedures', count: @procedures.total_count)}"
|
||||||
|
%span.hidden.spinner{ 'aria-hidden': 'true', 'data-turbo-target': 'spinner' }
|
||||||
|
|
||||||
%thead
|
%thead
|
||||||
%tr
|
%tr
|
||||||
%th{ role: 'columnheader' }
|
%th{ role: 'columnheader' }
|
||||||
|
@ -66,7 +67,7 @@
|
||||||
%th{ scope: 'col' } Statut
|
%th{ scope: 'col' } Statut
|
||||||
%th{ scope: 'col' } Date
|
%th{ scope: 'col' } Date
|
||||||
%th{ scope: 'col' } Action
|
%th{ scope: 'col' } Action
|
||||||
%tbody{ 'data-turbo': 'true' }
|
%tbody
|
||||||
- @procedures.each do |procedure|
|
- @procedures.each do |procedure|
|
||||||
= render partial: 'detail', locals: { procedure: procedure, show_detail: false }
|
= render partial: 'detail', locals: { procedure: procedure, show_detail: false }
|
||||||
.fr-table__footer
|
.fr-table__footer
|
||||||
|
|
Loading…
Reference in a new issue