diff --git a/src/main/features/claim/views/check-and-send.njk b/src/main/features/claim/views/check-and-send.njk index 1e7e7d3f27..496d90e15b 100644 --- a/src/main/features/claim/views/check-and-send.njk +++ b/src/main/features/claim/views/check-and-send.njk @@ -29,7 +29,7 @@ ) }} {{ partyDetailRow('Contact number (optional)', draftClaim.claimant.phone.number, paths.claimantPhonePage.uri) }} - +
All details will be shared with the other parties involved in the claim.
+ {{ statementOfTruthUpdated( form, statementOfTruthType = SignatureType.CLAIM, diff --git a/src/main/features/claim/views/claimant-individual-details.njk b/src/main/features/claim/views/claimant-individual-details.njk index d6b442feb2..a906f5d4e8 100644 --- a/src/main/features/claim/views/claimant-individual-details.njk +++ b/src/main/features/claim/views/claimant-individual-details.njk @@ -16,6 +16,8 @@{{ t('These details are shared with the person, business or organisation you are claiming from (the defendant).') }}
+All details will be shared with the other parties involved in the claim.
+ {{ partyDetailsFragment( form, diff --git a/src/main/views/macro/address.njk b/src/main/views/macro/address.njk index 736d476ed0..dec581bb3d 100644 --- a/src/main/views/macro/address.njk +++ b/src/main/views/macro/address.njk @@ -147,7 +147,7 @@ {{ radioGroup( - label = t('Would you like correspondence sent to a different address?'), + label = t('Would you like correspondence sent to a different address? All details will be shared with the other parties involved in the claim.'), name = 'hasCorrespondenceAddress', options = [ { label: 'No', value: false }, diff --git a/src/main/views/macro/party/details.njk b/src/main/views/macro/party/details.njk index 6985ffa6da..a59027b70c 100644 --- a/src/main/views/macro/party/details.njk +++ b/src/main/views/macro/party/details.njk @@ -21,7 +21,6 @@ {% if addressSection %}{{ t('If your address is not correct you can change it here. Any changes will be shared with the claimant when you submit your response.') }}
{% if addressSection.hint %}{{ t(addressSection.hint) }}
{% endif %} @@ -118,7 +117,7 @@ {% endmacro %} {% macro partyDetail(partyDetails, showCorrespondenceAddressSection = true, changeLinks = {}, claim) %} - + {% set linkHref = changeLinks.partyDetails or changeLinks.name or changeLinks.contactPerson %} {{ partyDetailRow('Full name', partyDetails.name, changeLink = linkHref) }} @@ -166,7 +165,7 @@ {% if claim and claim.claimData.defendant.phone %} {{ partyDetailRow('Contact number', partyDetails.phone, changeLink = linkHref) }} {% endif %} - + {% if (partyDetails.type === 'individual' and partyDetails.dateOfBirth and partyDetails.dateOfBirth.date) %} {{ partyDetailRow('Date of birth', partyDetails.dateOfBirth.date.toMoment() | date, changeLinks.dateOfBirth) }} {% endif %} @@ -185,7 +184,7 @@ {% else %} {{ t(value) }} {% endif %} - +