From 90a0879d711d9d40429a9a3f83dac11af8b13fcc Mon Sep 17 00:00:00 2001 From: clemkeirua Date: Thu, 27 Feb 2020 17:39:19 +0100 Subject: [PATCH] ajout du bouton pour telecharger un pdf vide --- app/views/commencer/show.html.haml | 11 +++++++++++ config/routes.rb | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/app/views/commencer/show.html.haml b/app/views/commencer/show.html.haml index 661b2b4d2..e5374b008 100644 --- a/app/views/commencer/show.html.haml +++ b/app/views/commencer/show.html.haml @@ -40,3 +40,14 @@ %h2.huge-title Vous avez déjà des dossiers pour cette démarche = link_to 'Voir mes dossiers en cours', dossiers_path, class: ['button large expand primary'] = link_to 'Commencer un nouveau dossier', url_for_new_dossier(@procedure), class: ['button large expand'] + + - pdf_link = commencer_dossier_vide_path(path: @procedure.path, format: :pdf) + - if @procedure.brouillon? + - pdf_link = commencer_dossier_vide_test_path(path: @procedure.path, format: :pdf) + %hr + %h2.huge-title Effectuer une demande papier + %p + Vous souhaitez effectuer une demande par papier ? Vous pouvez télécharger un dossier vide au format PDF, + et l'envoyer à l’administration concernée. + %br + = link_to 'Télécharger un dossier vide au format PDF', pdf_link, class: ['button large expand'] diff --git a/config/routes.rb b/config/routes.rb index f2819b0f9..32bc4a620 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -245,7 +245,7 @@ Rails.application.routes.draw do get '/test/:path/dossier_vide', action: 'dossier_vide_pdf_test', as: :dossier_vide_test get '/test/:path', action: 'commencer_test', as: :test get '/:path', action: 'commencer' - get '/:path/dossier_vide', action: 'dossier_vide_pdf' + get '/:path/dossier_vide', action: 'dossier_vide_pdf', as: :dossier_vide get '/:path/sign_in', action: 'sign_in', as: :sign_in get '/:path/sign_up', action: 'sign_up', as: :sign_up get '/:path/france_connect', action: 'france_connect', as: :france_connect