forked from bcgov/lear
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22290 Updated continuation "PAID" email (bcgov#2934)
* - added template parts to list and updated comments - added foreign jurisdiction computation and included it in continuation in variables - updated CONT-IN-PAID template to match UI designs - added some "true" whitespace template partsf and updated comments - added template part for continuation application details - added class to style and update title message whitespace - updated a comment for future * - added "- Pending" to continuation application attachment name * - changed "EXPRO" check to "business" check * - deleted debugging code --------- Co-authored-by: Severin Beauvais <[email protected]>
- Loading branch information
1 parent
f488c30
commit acec461
Showing
12 changed files
with
92 additions
and
24 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
3 changes: 3 additions & 0 deletions
3
queue_services/entity-emailer/src/entity_emailer/email_templates/common/16px.html
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<!-- empty paragraph for spacing --> | ||
<!-- height = 0 + 16 = 16px --> | ||
<p style="margin-top: 16px !important;"></p> |
2 changes: 2 additions & 0 deletions
2
queue_services/entity-emailer/src/entity_emailer/email_templates/common/20px.html
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 +1,3 @@ | ||
<!-- empty paragraph for spacing --> | ||
<!-- height = 0 + 20 = 20px --> | ||
<p style="margin-top: 20px !important;"></p> |
3 changes: 3 additions & 0 deletions
3
queue_services/entity-emailer/src/entity_emailer/email_templates/common/24px.html
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<!-- empty paragraph for spacing --> | ||
<!-- height = 0 + 24 = 24px --> | ||
<p style="margin-top: 24px !important;"></p> |
3 changes: 3 additions & 0 deletions
3
queue_services/entity-emailer/src/entity_emailer/email_templates/common/8px.html
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<!-- empty paragraph for spacing --> | ||
<!-- height = 0 + 8 = 8px --> | ||
<p style="margin-top: 8px !important;"></p> |
25 changes: 25 additions & 0 deletions
25
...y-emailer/src/entity_emailer/email_templates/common/continuation-application-details.html
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<div class="continuation-application-details"> | ||
<p class="title-message bold">Your Continuation Application Details</p> | ||
<div> | ||
<div class="name bold">Identifying Number in Foreign Jurisdiction:</div> | ||
<div class="value">{{ filing.foreignJurisdiction.identifier }}</div> | ||
</div> | ||
[[16px.html]] | ||
<div> | ||
<div class="name bold">Name in Foreign Jurisdiction:</div> | ||
<div class="value">{{ filing.foreignJurisdiction.legalName }}</div> | ||
</div> | ||
[[16px.html]] | ||
<div> | ||
<div class="name bold">Foreign Jurisdiction:</div> | ||
<div class="value">{{ foreign_jurisdiction }}</div> | ||
</div> | ||
|
||
{% if filing.business %} | ||
[[16px.html]] | ||
<div> | ||
<div class="name bold">Extraprovincial Registration Number in B.C.:</div> | ||
<div class="value">{{ filing.business.identifier }}</div> | ||
</div> | ||
{% endif %} | ||
</div> |
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
3 changes: 2 additions & 1 deletion
3
queue_services/entity-emailer/src/entity_emailer/email_templates/common/whitespace-16px.html
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,2 +1,3 @@ | ||
<!-- empty paragraph for spacing --> | ||
<!-- paragraph for spacing --> | ||
<!-- height = 16 + 16 = 32px --> | ||
<p style="margin-top: 16px !important;"> </p> |
3 changes: 2 additions & 1 deletion
3
queue_services/entity-emailer/src/entity_emailer/email_templates/common/whitespace-24px.html
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,2 +1,3 @@ | ||
<!-- empty paragraph for spacing --> | ||
<!-- paragraph for spacing --> | ||
<!-- height = 16 + 24 = 40px --> | ||
<p style="margin-top: 24px !important;"> </p> |
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