harmonize rna display for instructeur and usager - add grey card like siret
This commit is contained in:
parent
b7d6e9e30f
commit
b125f921ea
3 changed files with 19 additions and 7 deletions
|
@ -1,16 +1,23 @@
|
||||||
- if champ.value.blank?
|
- if champ.value.blank?
|
||||||
%p= t('.not_filled')
|
%p= t('.not_filled')
|
||||||
- elsif profile == 'instructeur'
|
- else
|
||||||
- if champ.data.blank?
|
- if champ.data.blank?
|
||||||
%p= t('.not_found', rna: champ.value)
|
%p= t('.not_found', rna: champ.value)
|
||||||
- else
|
- else
|
||||||
%p= t('.data_fetched_title', rna: champ.value)
|
%div.fr-background-alt--grey.fr-p-3v
|
||||||
%ul
|
= render Dossiers::RowShowComponent.new(label: t("activemodel.attributes.rna_champ.value")) do |c|
|
||||||
|
- c.with_value do
|
||||||
|
%p
|
||||||
|
= champ.value
|
||||||
|
=render Dsfr::CopyButtonComponent.new(text: champ.value, title: t("activemodel.attributes.rna_champ.paste"), success: t("activemodel.attributes.rna_champ.paste_success"))
|
||||||
|
|
||||||
- ['association_titre', 'association_objet', ].each do |scope|
|
- ['association_titre', 'association_objet', ].each do |scope|
|
||||||
- if champ.data[scope].present?
|
- if champ.data[scope].present?
|
||||||
%li #{t("activemodel.attributes.rna_champ.data.#{scope}")} : #{champ.data[scope].capitalize}
|
= render Dossiers::RowShowComponent.new(label: t("activemodel.attributes.rna_champ.data.#{scope}")) do |c|
|
||||||
|
- c.with_value do
|
||||||
|
%p= champ.data[scope]
|
||||||
- ['association_date_creation', 'association_date_declaration', 'association_date_publication'].each do |scope|
|
- ['association_date_creation', 'association_date_declaration', 'association_date_publication'].each do |scope|
|
||||||
- if champ.data[scope].present?
|
- if champ.data[scope].present?
|
||||||
%li #{t("activemodel.attributes.rna_champ.data.#{scope}")} : #{l(champ.data[scope].to_date)}
|
= render Dossiers::RowShowComponent.new(label: t("activemodel.attributes.rna_champ.data.#{scope}")) do |c|
|
||||||
- else
|
- c.with_value do
|
||||||
%p= champ.identifier
|
%p= l(champ.data[scope].to_date)
|
||||||
|
|
|
@ -2,12 +2,15 @@ en:
|
||||||
activemodel:
|
activemodel:
|
||||||
attributes:
|
attributes:
|
||||||
rna_champ:
|
rna_champ:
|
||||||
|
value: N° RNA
|
||||||
data:
|
data:
|
||||||
association_titre: Association name
|
association_titre: Association name
|
||||||
association_objet: Association purpose
|
association_objet: Association purpose
|
||||||
association_date_creation: Creation date
|
association_date_creation: Creation date
|
||||||
association_date_declaration: Declaration date
|
association_date_declaration: Declaration date
|
||||||
association_date_publication: Publication date
|
association_date_publication: Publication date
|
||||||
|
paste: Copy the RNA to the clipboard
|
||||||
|
paste_success: The RNA has been copied to the clipboard
|
||||||
activerecord:
|
activerecord:
|
||||||
attributes:
|
attributes:
|
||||||
champs/rna_champ:
|
champs/rna_champ:
|
||||||
|
|
|
@ -9,6 +9,8 @@ fr:
|
||||||
association_date_creation: Date de création
|
association_date_creation: Date de création
|
||||||
association_date_declaration: Date de déclaration
|
association_date_declaration: Date de déclaration
|
||||||
association_date_publication: Date de publication
|
association_date_publication: Date de publication
|
||||||
|
paste: Copier le RNA dans le presse-papier
|
||||||
|
paste_success: Le RNA a été copié dans le presse-papier
|
||||||
activerecord:
|
activerecord:
|
||||||
attributes:
|
attributes:
|
||||||
champs/rna_champ:
|
champs/rna_champ:
|
||||||
|
|
Loading…
Reference in a new issue