Wording : Démarche en brouillon => Démarche en test

This commit is contained in:
Mathieu Magnin 2019-01-10 10:31:30 +01:00
parent 2ce6d01aec
commit a4ddec6dff
6 changed files with 12 additions and 6 deletions

View file

@ -10,7 +10,7 @@ module ProcedureHelper
end
def procedure_libelle(procedure)
parts = procedure.brouillon? ? [content_tag(:span, 'démarche non publiée', class: 'badge')] : []
parts = procedure.brouillon? ? [content_tag(:span, 'démarche en test', class: 'badge')] : []
parts << procedure.libelle
safe_join(parts, ' ')
end