Skip to content

Commit

Permalink
22847 - Amalgamation Application Output Display Type (#3007)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArwenQin authored Sep 25, 2024
1 parent be7dbf5 commit d9c1b5b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
7 changes: 7 additions & 0 deletions legal-api/report-templates/amalgamationApplication.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
[[logo.html]]
</td>
<td>
{% if amalgamationApplication.type == 'regular' %}
<div class="report-type">REGULAR FORM</div>
{% elif amalgamationApplication.type == 'horizontal' %}
<div class="report-type">HORIZONTAL SHORT FORM</div>
{% elif amalgamationApplication.type == 'vertical' %}
<div class="report-type">VERTICAL SHORT FORM</div>
{% endif %}
<div class="report-type">AMALGAMATION APPLICATION</div>
<div class="report-type-desc">{{ entityDescription }} - {{ entityAct }}</div>
</td>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
Name of Amalgamated Company:
{% if business.legalName %}
{{ business.legalName }}
{% elif nameRequest.legalName %}
{{ nameRequest.legalName }}
{% else %}
{{numberedDescription}}
{% endif %}
<div class="section-data">
Name of Amalgamated Company:
{% if business.legalName %}
{{ business.legalName }}
{% elif nameRequest.legalName %}
{{ nameRequest.legalName }}
{% else %}
{{ numberedDescription }}
{% endif %}
</div>

0 comments on commit d9c1b5b

Please sign in to comment.