chore: rename dossier_resolution => dossier_correction

This commit is contained in:
Colin Darie 2023-04-03 17:05:54 +02:00
parent b14a70abf7
commit 5ab44fc7a9
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4
13 changed files with 64 additions and 64 deletions

View file

@ -5,7 +5,7 @@
= "Dossier nº #{dossier.id}"
= status_badge(dossier.state, 'super')
= pending_correction_badge(:for_instructeur) if dossier.pending_resolution?
= pending_correction_badge(:for_instructeur) if dossier.pending_correction?
= link_to dossier.procedure.libelle.truncate_words(10), instructeur_procedure_path(dossier.procedure), title: dossier.procedure.libelle, class: "fr-link"
= procedure_badge(dossier.procedure)

View file

@ -3,7 +3,7 @@
%h1
= dossier.procedure.libelle
= status_badge(dossier.state, 'super')
= pending_correction_badge(:for_user) if dossier.pending_resolution?
= pending_correction_badge(:for_user) if dossier.pending_correction?
%h2
= t('views.users.dossiers.show.header.dossier_number', dossier_id: dossier.id)
- if dossier.depose_at.present?