-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
21114 - Continuation application (Outputs) (#2780)
* 21114 - Output:continuation application * 21114 - update logic and file names
- Loading branch information
1 parent
aded858
commit a4b57b7
Showing
8 changed files
with
188 additions
and
4 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,55 @@ | ||
[[macros.html]] | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Continuation Application</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"> | ||
CONTINUATION APPLICATION | ||
</div> | ||
<div class="report-type-desc">{{ entityDescription }} - {{ entityAct }}</div> | ||
</td> | ||
</tr> | ||
</table> | ||
<div class="business-name-header"> | ||
<label class="lbl-business-name"> | ||
{% if nameRequest.legalName %} | ||
{{ nameRequest.legalName }} | ||
{% else %} | ||
{{ numberedDescription }} | ||
{% endif %} | ||
</label> | ||
</div> | ||
</div> | ||
[[common/businessDetails.html]] | ||
|
||
<div class="section-header mt-5 pt-4">CONTINUATION APPLICATION</div> | ||
<div class="container pt-4"> | ||
[[incorporation-application/nameRequest.html]] | ||
[[continuation/effectiveDate.html]] | ||
[[continuation/foreignJurisdiction.html]] | ||
[[continuation/exproRegistrationInBc.html]] | ||
[[continuation/authorization.html]] | ||
[[incorporation-application/completingParty.html]] | ||
</div> | ||
<div class="section-header mt-7 pt-4">NOTICE OF ARTICLES</div> | ||
<div class="container pt-4"> | ||
[[common/statement.html]] | ||
[[incorporation-application/benefitCompanyStmt.html]] | ||
[[common/addresses.html]] | ||
[[common/directors.html]] | ||
[[common/shareStructure.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
11 changes: 11 additions & 0 deletions
11
legal-api/report-templates/template-parts/continuation/authorization.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,11 @@ | ||
<div class="no-page-break"> | ||
<div class="separator mt-4"></div> | ||
<div class="section-title mt-4">Authorization for Continuation</div> | ||
<table class="section-data nr-name-table mt-4" role="presentation"> | ||
<tr> | ||
<td> | ||
The authorization for the continuation into B.C. from the foreign corporation’s jurisdiction was filed. | ||
</td> | ||
</tr> | ||
</table> | ||
</div> |
11 changes: 11 additions & 0 deletions
11
legal-api/report-templates/template-parts/continuation/effectiveDate.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,11 @@ | ||
<div class="no-page-break"> | ||
<div class="separator mt-4"></div> | ||
<div class="section-title mt-4">Continuation Effective Date</div> | ||
<div class="section-data mt-4"> | ||
{% if header.isFutureEffective %} | ||
{{effective_date_time}} | ||
{% else %} | ||
The incorporation is to take effect at the time that this application is filed with the Registrar. | ||
{% endif %} | ||
</div> | ||
</div> |
20 changes: 20 additions & 0 deletions
20
legal-api/report-templates/template-parts/continuation/exproRegistrationInBc.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,20 @@ | ||
{% if exproBusiness %} | ||
<div class="no-page-break"> | ||
<div class="separator mt-4"></div> | ||
<div class="section-title mt-4">Extraprovincial Registration in British Columbia</div> | ||
<table class="section-data nr-name-table mt-4" role="presentation"> | ||
<tr> | ||
<td class="bold col-33">Registration Number:</td> | ||
<td class="pt-2"> | ||
{{exproBusiness.identifier}} | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="bold col-33">Business Name in B.C.:</td> | ||
<td class="pt-2"> | ||
{{exproBusiness.legalName}} | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
{% endif %} |
35 changes: 35 additions & 0 deletions
35
legal-api/report-templates/template-parts/continuation/foreignJurisdiction.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,35 @@ | ||
<div class="no-page-break"> | ||
<div class="separator mt-4"></div> | ||
<div class="section-title mt-4">Previous Foreign Jurisdiction Information</div> | ||
<table class="section-data nr-name-table mt-4" role="presentation"> | ||
<tr> | ||
<td class="bold col-33">Identifying Number in Foreign Jurisdiction:</td> | ||
<td> | ||
{{foreignJurisdiction.identifier}} | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="bold pt-2">Name in Foreign Jurisdiction:</td> | ||
<td class="pt-2"> | ||
{{foreignJurisdiction.legalName}} | ||
</td> | ||
</tr> | ||
<tr> | ||
<td class="bold pt-2">Foreign Jurisdiction:</td> | ||
<td class="pt-2"> | ||
{% if foreignJurisdiction.region %} | ||
{{foreignJurisdiction.region}} | ||
{% else %} | ||
{{foreignJurisdiction.country}} | ||
{% endif %} | ||
|
||
</td> | ||
</tr> | ||
<tr> | ||
<td class="bold pt-2">Date of Incorporation, Continuation, or Amalgamation in Foreign Jurisdiction:</td> | ||
<td class="pt-2"> | ||
{{foreignJurisdiction.incorporationDate}} | ||
</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