From b1a3c7822f75870bdce1275b4a25585400c9dad1 Mon Sep 17 00:00:00 2001 From: mfo Date: Thu, 15 Feb 2024 15:51:03 +0100 Subject: [PATCH] review(dsfr): enforce fr-container, fr-table, fr-spacers Co-authored-by: Colin Darie --- .../groupe_instructeurs/_instructeurs.html.haml | 2 +- .../instructeurs/groupe_instructeurs/index.html.haml | 2 +- app/views/instructeurs/groupe_instructeurs/show.html.haml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/views/administrateurs/groupe_instructeurs/_instructeurs.html.haml b/app/views/administrateurs/groupe_instructeurs/_instructeurs.html.haml index ad0f5e0a586..3e8dd764380 100644 --- a/app/views/administrateurs/groupe_instructeurs/_instructeurs.html.haml +++ b/app/views/administrateurs/groupe_instructeurs/_instructeurs.html.haml @@ -20,7 +20,7 @@ = f.submit 'Affecter', class: 'fr-btn', disabled: disabled_as_super_admin - %table.table.mt-2 + %table.fr-table.fr-mt-2w.width-100 %thead %tr %th{ colspan: 2 }= t('.assigned_instructeur', count: instructeurs.count) diff --git a/app/views/instructeurs/groupe_instructeurs/index.html.haml b/app/views/instructeurs/groupe_instructeurs/index.html.haml index 0514d2ca6c8..64b98696083 100644 --- a/app/views/instructeurs/groupe_instructeurs/index.html.haml +++ b/app/views/instructeurs/groupe_instructeurs/index.html.haml @@ -4,7 +4,7 @@ locals: { steps: [[@procedure.libelle.truncate_words(10), instructeur_procedure_path(@procedure)], ['Groupes d’instructeurs']] } -.container.groupe-instructeur +.fr-container.groupe-instructeur %h1 Gestion des Groupes .card %h2.fr-h3 Liste des groupes diff --git a/app/views/instructeurs/groupe_instructeurs/show.html.haml b/app/views/instructeurs/groupe_instructeurs/show.html.haml index 9e0dd27abc9..2f785f482b1 100644 --- a/app/views/instructeurs/groupe_instructeurs/show.html.haml +++ b/app/views/instructeurs/groupe_instructeurs/show.html.haml @@ -13,21 +13,21 @@ locals: { steps: [[@procedure.libelle, instructeur_procedure_path(@procedure)], ['Instructeurs']] } -.container.groupe-instructeur +.fr-container.groupe-instructeur %h1 - if @procedure.routing_enabled? Groupe « #{@groupe_instructeur.label} » - else Démarche « #{@procedure.libelle} » - .card.mt-2 + .card.fr-mt-2w %h2.fr-h3 Gestion des instructeurs = form_for(Instructeur.new(user: User.new), url: { action: :add_instructeur }, html: { class: 'form' }) do |f| %h3.fr-h4 Affecter un nouvel instructeur = render Dsfr::InputComponent.new(form: f, attribute: :email) = f.submit 'Affecter', class: 'fr-btn fr-primary' - %table.table.mt-2 + %table.fr-table.fr-mt-2w.width-100 %thead %tr %th{ colspan: 2 } Instructeurs affectés @@ -45,7 +45,7 @@ = paginate @instructeurs, views_prefix: 'shared' - .card.mt-2 + .card.fr-mt-2w %h2.fr-h3 Informations de contact - service = @groupe_instructeur.contact_information - if service.nil?