34 lines
1.2 KiB
Text
34 lines
1.2 KiB
Text
#pieces_justificatives
|
|
-#%h3.text-info Liste des pièces justificatives
|
|
-#%br
|
|
|
|
%table.table
|
|
-if @facade.procedure.cerfa_flag?
|
|
%tr{id: "piece_justificative_0"}
|
|
%th{class:'col-lg-6'}
|
|
='Formulaire'
|
|
%td.col-lg-6.col-md-6
|
|
- if @facade.dossier.cerfa_available?
|
|
- if user_signed_in?
|
|
= 'Pièce fournie'
|
|
- elsif gestionnaire_signed_in?
|
|
%a{ href: "#{@facade.dossier.cerfa.content_url}", target: '_blank' } Consulter
|
|
- else
|
|
= 'Pièce non fournie'
|
|
|
|
- @facade.dossier.pieces_justificatives.each do |piece_justificative|
|
|
%tr{ id: "piece_justificative_#{piece_justificative.type}" }
|
|
%th.col-lg-6
|
|
= piece_justificative.libelle
|
|
%td.col-lg-6.col-md-6
|
|
- if piece_justificative.api_entreprise
|
|
%span.text-success Nous l'avons récupéré pour vous.
|
|
- elsif !piece_justificative.empty?
|
|
- if user_signed_in?
|
|
= 'Pièce fournie'
|
|
- elsif gestionnaire_signed_in?
|
|
%a{ href: "#{piece_justificative.content_url}", target: '_blank' } Consulter
|
|
- else
|
|
= 'Pièce non fournie'
|
|
|
|
|