[Fix #105] Show the pieces justificative’ descriptions

This commit is contained in:
gregoirenovel 2017-05-05 12:37:11 +02:00
parent ecca3b3f37
commit 1a5f9fd067
3 changed files with 15 additions and 0 deletions

View file

@ -138,3 +138,11 @@
width: 160px;
}
}
.piece-description {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #737373;
font-weight: normal;
}

View file

@ -22,6 +22,8 @@
%tr
%th.piece-libelle
= tpj.mandatory ? tpj.libelle + ' *' : tpj.libelle
%br
.piece-description= tpj.description
%td
- unless tpj.lien_demarche.blank?

View file

@ -5,12 +5,14 @@ describe 'users/description/_pieces_justificatives.html.haml', type: :view do
let!(:tpj1) { create(:type_de_piece_justificative,
procedure: procedure,
libelle: "Première pièce jointe",
description: "Première description",
order_place: 1,
mandatory: true
)}
let!(:tpj2) { create(:type_de_piece_justificative,
procedure: procedure,
libelle: "Seconde pièce jointe",
description: "Seconde description",
order_place: 2,
lien_demarche: "https://www.google.fr"
)}
@ -25,6 +27,9 @@ describe 'users/description/_pieces_justificatives.html.haml', type: :view do
expect(rendered).to include("Seconde pièce jointe")
expect(rendered.index("Première pièce jointe")).to be < rendered.index("Seconde pièce jointe")
expect(rendered).to include("Première description")
expect(rendered).to include("Seconde description")
expect(rendered).to have_selector("input[type=file]", count: 2)
end
end