Skip to content

Commit

Permalink
review(dsfr): enforce fr-container, fr-table, fr-spacers
Browse files Browse the repository at this point in the history
Co-authored-by: Colin Darie <colin@darie.eu>
  • Loading branch information
2 people authored and Martin committed Feb 15, 2024
1 parent 2f32468 commit b1a3c78
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion app/views/instructeurs/groupe_instructeurs/index.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions app/views/instructeurs/groupe_instructeurs/show.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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?
Expand Down

0 comments on commit b1a3c78

Please sign in to comment.