-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Securities Act Notice outputs, discharge registration. (#1867)
* Securities Act Notice outputs, discharge registration. Signed-off-by: Doug Lovett <[email protected]> * Securities Act Notice add flag to user profile, update unit test. Signed-off-by: Doug Lovett <[email protected]> * Updates to outputs from UXA review. Signed-off-by: Doug Lovett <[email protected]> --------- Signed-off-by: Doug Lovett <[email protected]>
- Loading branch information
1 parent
653ba3b
commit b8aebac
Showing
18 changed files
with
229 additions
and
123 deletions.
There are no files selected for viewing
122 changes: 46 additions & 76 deletions
122
ppr-api/report-templates/template-parts/registration/securitiesActNotice.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
103 changes: 103 additions & 0 deletions
103
ppr-api/report-templates/template-parts/search-result/securitiesActNotice.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,103 @@ | ||
{% if detail.financingStatement.securitiesActNotices is defined and change is not defined %} | ||
<div class="separator mt-5"></div> | ||
{% endif %} | ||
<div class="no-page-break"> | ||
<div class="section-title mt-3">Securities Act Notice</div> | ||
{% if detail.financingStatement.securitiesActNotices is defined and change is not defined %} | ||
{% for notice in detail.financingStatement.securitiesActNotices %} | ||
<div class="section-sub-title-blue mt-3">{{ notice.registrationDescription|title }}</div> | ||
<table class="no-page-break section-data court-order-table mt-3" role="presentation"> | ||
<tr> | ||
<td class="section-sub-title">Effective Date:</td> | ||
<td> | ||
{% if notice.effectiveDateTime is defined and notice.effectiveDateTime != '' %} | ||
{{ notice.effectiveDateTime }} | ||
{% endif %} | ||
</td> | ||
</tr> | ||
</table> | ||
{% if notice.securitiesActOrders %} | ||
{% for order in notice.securitiesActOrders %} | ||
<div class="section-sub-title-blue mt-6 mb-2">{% if order.courtOrder %}Court Order {% else %}Security Commission Order{% endif %}</div> | ||
<table class="no-page-break section-data court-order-table" role="presentation"> | ||
{% if order.courtName is defined %} | ||
<tr> | ||
<td class="section-sub-title">Name of Court:</td> | ||
<td>{{ order.courtName }}</td> | ||
</tr> | ||
{% endif %} | ||
{% if order.courtRegistry is defined %} | ||
<tr> | ||
<td class="section-sub-title">Registry</td> | ||
<td>{{ order.courtRegistry }}</td> | ||
</tr> | ||
{% endif %} | ||
<tr> | ||
<td class="section-sub-title">{% if order.courtOrder %}Court{% else %}Commission{% endif %} File Number:</td> | ||
<td>{% if order.fileNumber %}{{ order.fileNumber }}{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<td class="section-sub-title">Date of Order:</td> | ||
<td>{% if order.orderDate %}{{ order.orderDate }}{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<td class="section-sub-title">Effect of Order:</td> | ||
<td>{% if order.effectOfOrder %}{{ order.effectOfOrder }}{% endif %}</td> | ||
</tr> | ||
</table> | ||
{% endfor %} | ||
{% endif %} | ||
{% if not loop.last %} | ||
<div class="separator-table-row mt-5 mb-5"></div> | ||
{% endif %} | ||
{% endfor %} | ||
{% elif change is defined and change.securitiesActNotices is defined %} | ||
{% for notice in change.securitiesActNotices %} | ||
<div class="section-sub-title-blue mt-3">{{ notice.registrationDescription|title }}</div> | ||
<table class="no-page-break section-data court-order-table mt-3" role="presentation"> | ||
<tr> | ||
<td class="section-sub-title">Date of Effectiveness:</td> | ||
<td> | ||
{% if notice.effectiveDateTime is defined and notice.effectiveDateTime != '' %} | ||
{{ notice.effectiveDateTime }} | ||
{% endif %} | ||
</td> | ||
</tr> | ||
</table> | ||
{% if notice.securitiesActOrders %} | ||
{% for order in notice.securitiesActOrders %} | ||
<div class="section-sub-title-blue mt-6 mb-2">{% if order.courtOrder %}Court Order {% else %}Security Commission Order{% endif %}</div> | ||
<table class="no-page-break section-data court-order-table" role="presentation"> | ||
{% if order.courtName is defined %} | ||
<tr> | ||
<td class="section-sub-title">Name of Court:</td> | ||
<td>{{ order.courtName }}</td> | ||
</tr> | ||
{% endif %} | ||
{% if order.courtRegistry is defined %} | ||
<tr> | ||
<td class="section-sub-title">Registry</td> | ||
<td>{{ order.courtRegistry }}</td> | ||
</tr> | ||
{% endif %} | ||
<tr> | ||
<td class="section-sub-title">{% if order.courtOrder %}Court{% else %}Commission{% endif %} File Number:</td> | ||
<td>{% if order.fileNumber %}{{ order.fileNumber }}{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<td class="section-sub-title">Date of Order:</td> | ||
<td>{% if order.orderDate %}{{ order.orderDate }}{% endif %}</td> | ||
</tr> | ||
<tr> | ||
<td class="section-sub-title">Effect of Order:</td> | ||
<td>{% if order.effectOfOrder %}{{ order.effectOfOrder }}{% endif %}</td> | ||
</tr> | ||
</table> | ||
{% endfor %} | ||
{% endif %} | ||
{% if not loop.last %} | ||
<div class="separator-table-row mt-5 mb-5"></div> | ||
{% endif %} | ||
{% endfor %} | ||
{% 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
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
Oops, something went wrong.