Merge pull request #9957 from demarches-simplifiees/finalize-rna-rnf-ldu

ETQ instructeur et consommateur API, la vue du champ RNA est harmonisée avec le champ RNF
This commit is contained in:
Colin Darie 2024-02-14 15:30:54 +00:00 committed by GitHub
commit bd3c2c070a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 173 additions and 10 deletions

View file

@ -2,4 +2,4 @@
en:
rnf_info_error: No foundation found
rnf_info_pending: RNF verification pending
rnf_info_success: "This RNF matches %{title}"
rnf_info_success: "This RNF matches %{title}, %{address}"

View file

@ -2,4 +2,4 @@
fr:
rnf_info_error: Aucune fondation trouvée
rnf_info_pending: Vérification du RNF en cours
rnf_info_success: "Ce RNF correspond à %{title}"
rnf_info_success: "Ce RNF correspond à %{title}, %{address}"

View file

@ -6,4 +6,4 @@
- elsif @champ.fetch_external_data_pending?
%p.fr-info-text= t('.rnf_info_pending')
- elsif @champ.data?
%p.fr-info-text= t('.rnf_info_success', title: @champ.title)
%p.fr-info-text= t('.rnf_info_success', title: @champ.title, address: @champ.full_address)