2018-06-19 16:23:43 +02:00
|
|
|
|
%footer.dossier-footer
|
|
|
|
|
.container
|
2018-09-11 16:02:09 +02:00
|
|
|
|
- service = dossier.procedure.service
|
|
|
|
|
- if service.present?
|
|
|
|
|
%ul.footer-columns
|
2018-06-19 16:23:43 +02:00
|
|
|
|
%li.footer-column
|
|
|
|
|
%h3.footer-header Cette démarche est gérée par :
|
|
|
|
|
%p
|
|
|
|
|
= service.nom
|
|
|
|
|
%br
|
|
|
|
|
= service.organisme
|
|
|
|
|
%br
|
|
|
|
|
= string_to_html(service.adresse)
|
|
|
|
|
|
|
|
|
|
%li.footer-column
|
|
|
|
|
%h3.footer-header Poser une question sur votre dossier :
|
|
|
|
|
%p
|
|
|
|
|
- if dossier.brouillon?
|
|
|
|
|
Par email :
|
|
|
|
|
= link_to service.email, "mailto:#{service.email}"
|
|
|
|
|
- else
|
|
|
|
|
Directement
|
|
|
|
|
= link_to "par la messagerie", users_dossier_recapitulatif_path(dossier)
|
|
|
|
|
%p
|
|
|
|
|
Par téléphone :
|
|
|
|
|
%a{ href: "tel:#{service.telephone}" }= service.telephone
|
|
|
|
|
|
|
|
|
|
%p
|
|
|
|
|
Horaires : #{ service.horaires.sub(/\S/, &:downcase) }
|
|
|
|
|
|
2018-09-11 16:02:09 +02:00
|
|
|
|
- politiques = politiques_conservation_de_donnees(dossier.procedure)
|
|
|
|
|
- if politiques.present?
|
|
|
|
|
%li.footer-column
|
|
|
|
|
%h3.footer-header Conservation des données :
|
|
|
|
|
- politiques.each do |politique|
|
|
|
|
|
%p= politique
|
2018-08-30 16:31:00 +02:00
|
|
|
|
|
2018-06-19 16:23:43 +02:00
|
|
|
|
.footer-bottom-line
|
|
|
|
|
= link_to "Accessibilité", accessibilite_index_path, :class => "footer-link"
|
|
|
|
|
–
|
|
|
|
|
= link_to "CGU", CGU_URL, :class => "footer-link", :target => "_blank", rel: "noopener noreferrer"
|
|
|
|
|
–
|
|
|
|
|
= link_to "Mentions légales", MENTIONS_LEGALES_URL, :class => "footer-link", :target => "_blank", rel: "noopener noreferrer"
|
|
|
|
|
–
|
2018-08-30 13:10:56 +02:00
|
|
|
|
= contact_link "Contact technique", class: "footer-link", dossier_id: dossier.id
|