generated from hmcts/expressjs-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NFDIV-4203: Update hub page for international address (#3878)
* NFDIV-4203: Remove unused code * NFDIV-4203: Update hub page for international adress * NFDIV-4203: Refactor code * NFDIV-4203: Add Welsh translation, refactor other code * NFDIV-4203: Fix logic * NFDIV-4206: Add logic for represented respondent and HWF (#3880) * NFDIV-4206: Add logic for represented respondent and HWF * NFDIV-4207: Add state to template selector for HWF cannot upload documents * NFDIV-4210: Update hub page when respondent represented and international address (#3884) * NFDIV-4210: Update hub page when respodent represented and international address * NFDIV-4210: Fix issue with progress bar * NFDIV-4210: Use correct function
- Loading branch information
Showing
9 changed files
with
80 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 16 additions & 3 deletions
19
src/main/steps/applicant1/hub-page/sole/latest-update-content/aos-awaiting-or-drafted.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
{% for property, line in aosAwaitingOrDrafted %} | ||
<p class="govuk-body">{{ line }}</p> | ||
{% endfor %} | ||
<p class="govuk-body">{{ aosAwaitingOrDrafted.line1 }}</p> | ||
{% if isRespondentOverseas %} | ||
{% if isRespondentRepresented %} | ||
<p class="govuk-body">{{ aosAwaitingOrDrafted.line7 }}</p> | ||
{% else %} | ||
<p class="govuk-body">{{ aosAwaitingOrDrafted.line2 }}</p> | ||
{% endif %} | ||
<p class="govuk-body">{{ aosAwaitingOrDrafted.line5 }}</p> | ||
<p class="govuk-body">{{ aosAwaitingOrDrafted.line6 }}</p> | ||
{% elif isRespondentRepresented %} | ||
<p class="govuk-body">{{ aosAwaitingOrDrafted.line7 }}</p> | ||
{% else %} | ||
<p class="govuk-body">{{ aosAwaitingOrDrafted.line2 }}</p> | ||
<p class="govuk-body">{{ aosAwaitingOrDrafted.line3 }}</p> | ||
<p class="govuk-body">{{ aosAwaitingOrDrafted.line4 }}</p> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters