-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
23350 - notice of withdrawal outputs - focus on NoW for existing busi…
…nesses (#3148) * create template for NoW and format it * update business details for NoW * update receipt data for NoW
- Loading branch information
1 parent
1a68629
commit 71abcb9
Showing
7 changed files
with
201 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[[macros.html]] | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Notice of Withdrawal</title> | ||
<meta charset="UTF-8"> | ||
<meta name="author" content="BC Registries and Online Services"> | ||
[[common/style.html]] | ||
</head> | ||
<body> | ||
<div class="header"> | ||
<table class="header-table" role="presentation"> | ||
<tr class="no-page-break"> | ||
<td> | ||
[[logo.html]] | ||
</td> | ||
<td> | ||
<div class="report-type">NOTICE OF WITHDRAWAL</div> | ||
<div class="report-type-desc">{{entityDescription}} - {{ entityAct }}</div> | ||
</td> | ||
</tr> | ||
</table> | ||
<div class="business-name-header"> | ||
<label class="lbl-business-name">{{business.legalName}}</label> | ||
</div> | ||
</div> | ||
[[common/businessDetails.html]] | ||
<div class="section-header mt-5 pt-4">NOTICE OF WITHDRAWAL</div> | ||
<div class="container pt-4"> | ||
[[notice-of-withdrawal/recordToBeWithdrawn.html]] | ||
</div> | ||
</body> | ||
</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
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
17 changes: 17 additions & 0 deletions
17
legal-api/report-templates/template-parts/notice-of-withdrawal/recordToBeWithdrawn.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,17 @@ | ||
<div class="no-page-break"> | ||
<div class="section-title mt-4">Record to be Withdrawn</div> | ||
<table class="record-to-be-withdrawn-table" role="presentation"> | ||
<tr> | ||
<td class="col-33"> | ||
<div class="bold pt-4">Filing Type:</div> | ||
<div class="bold pt-2">Filing Number:</div> | ||
<div class="bold pt-2">Effective Date and Time:</div> | ||
</td> | ||
<td> | ||
<div class="pt-4">{{ withdrawnFilingType }}</div> | ||
<div class="pt-2">{{ noticeOfWithdrawal.filingId }}</div> | ||
<div class="pt-2">{{ withdrawnFilingEffectiveDate }}</div> | ||
</td> | ||
</tr> | ||
</table> | ||
</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
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