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.
11550 - AmalgamaTING and TED Business Summary PDF (bcgov#2398)
* AmalTED pdf * Amalgamating pdf * remove Dissolution/Restoration Information section * fix lint error * lint with flake8 * lint
- Loading branch information
1 parent
47c3271
commit 426036b
Showing
5 changed files
with
60 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
24 changes: 24 additions & 0 deletions
24
legal-api/report-templates/template-parts/business-summary/amalgamating.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,24 @@ | ||
{% if business.isAmalgamating %} | ||
<div class="no-page-break"> | ||
<div class="separator mt-4"></div> | ||
<div class="section-title mt-4">Amalgamated Into</div> | ||
</div> | ||
|
||
<div class="mt-2"> | ||
<span class="section-sub-title">Name of Amalgamated Company: </span> | ||
{% if business.amalgamatedInto is defined %} | ||
<span class="section-data">{{business.amalgamatedInto.legalName}}</span> | ||
{% else %} | ||
<span class="section-data">Not Available</span> | ||
{% endif %} | ||
</div> | ||
|
||
<div class="mt-2"> | ||
<span class="section-sub-title">Incorporation Number: </span> | ||
{% if business.amalgamatedInto is defined %} | ||
<span class="section-data">{{business.amalgamatedInto.identifier}}</span> | ||
{% else %} | ||
<span class="section-data">Not Available</span> | ||
{% endif %} | ||
</div> | ||
{% endif %} |
6 changes: 3 additions & 3 deletions
6
legal-api/report-templates/template-parts/business-summary/amalgamations.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
2 changes: 1 addition & 1 deletion
2
legal-api/report-templates/template-parts/business-summary/stateTransition.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