From ec7aea50b36f2d15d9bbedb7af236bf69661e047 Mon Sep 17 00:00:00 2001 From: Eric Leroy-Terquem Date: Wed, 25 Sep 2024 17:45:51 +0200 Subject: [PATCH] style(instructeurs management): update instructeurs view --- .../import_component/import_component.html.haml | 2 +- .../groupe_instructeurs/_instructeurs.html.haml | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/app/components/procedure/import_component/import_component.html.haml b/app/components/procedure/import_component/import_component.html.haml index cbf8bad57..14b741740 100644 --- a/app/components/procedure/import_component/import_component.html.haml +++ b/app/components/procedure/import_component/import_component.html.haml @@ -20,4 +20,4 @@ = t('.csv_import.file_size_limit', max_file_size: number_to_human_size(csv_max_size)) .flex.column = file_field_tag :csv_file, required: true, accept: 'text/csv', size: "1", class: 'fr-mb-2w' - = submit_tag t('.csv_import.import_file'), class: 'fr-btn fr-btn--tertiary', data: { disable_with: "Envoi...", confirm: t('.csv_import.import_file_alert') } + = submit_tag t('.csv_import.import_file'), class: 'fr-btn fr-btn--tertiary', data: { disable_with: "Envoi...", confirm: t('.csv_import.import_file_alert') }, disabled: true diff --git a/app/views/administrateurs/groupe_instructeurs/_instructeurs.html.haml b/app/views/administrateurs/groupe_instructeurs/_instructeurs.html.haml index 8c026dbd8..968c6b938 100644 --- a/app/views/administrateurs/groupe_instructeurs/_instructeurs.html.haml +++ b/app/views/administrateurs/groupe_instructeurs/_instructeurs.html.haml @@ -23,15 +23,16 @@ = button_to export_groupe_instructeurs_admin_procedure_groupe_instructeurs_path(procedure, format: :csv), method: :get, class: 'fr-btn fr-btn--tertiary fr-btn--icon-left fr-icon-download-line' do Exporter la liste (.CSV) - %table.fr-table.width-100 + %table.fr-table.fr-table--bordered.width-100 %thead %tr - %th{ colspan: 2 }= t('.instructeurs_title') + %th= t('.title') + %th.text-right= t('.actions') %tbody - instructeurs.each do |instructeur| %tr %td - = dsfr_icon('fr-icon-user-fill') + = dsfr_icon('fr-icon-user-line') #{instructeur.email} - confirmation_message = procedure.routing_enabled? ? "Êtes-vous sûr de vouloir retirer l’instructeur « #{instructeur.email} » du groupe « #{groupe_instructeur.label} » ?" : "Êtes-vous sûr de vouloir retirer l’instructeur « #{instructeur.email} » de la démarche ?" @@ -40,6 +41,6 @@ { method: :delete, data: { confirm: confirmation_message }, params: { instructeur: { id: instructeur.id }}, - class: 'fr-btn fr-btn--secondary' } + class: 'fr-btn fr-btn--secondary fr-btn--icon-left fr-icon-subtract-line' } = paginate instructeurs, views_prefix: 'shared'