-
Notifications
You must be signed in to change notification settings - Fork 84
33515 updating the old COOPS outputs to the modern templates #4496
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,67 +1,65 @@ | ||
| [[macros.html]] | ||
|
|
||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <title>{{ meta_title }}</title> | ||
| <title>Annual Report</title> | ||
| <meta charset="UTF-8"> | ||
| <meta name="author" content="BC Registries and Online Services"> | ||
| <meta name="description" content="{{ meta_subject }}"> | ||
|
|
||
| [[style.html]] | ||
|
|
||
| [[common/style.html]] | ||
| {% if enable_sandbox %} | ||
| [[common/watermark.html]] | ||
| {% endif %} | ||
| </head> | ||
|
|
||
| <body> | ||
|
|
||
| [[logo.html]] | ||
|
|
||
| <div class="column-report"> | ||
| <div class="column-report-headspace"></div> | ||
| <div class="header-blue"> | ||
| {{ header.ARFilingYear }} BC COOPERATIVE ANNUAL REPORT | ||
| </div> | ||
| <div class="header-gold"> | ||
| BC Cooperative • Cooperative Association Act | ||
| </div> | ||
|
|
||
| <div class="column-report-inner"> | ||
| <div class="entity-name"> | ||
| {{ business.legalName }} | ||
| </div> | ||
|
|
||
| <!-- Struggling doing this with CSS, because weasyprint isn't laying it out the same as a browser. --> | ||
| <div class="section-data"> | ||
| <table class="section-data-table"> | ||
| <tr class="no-page-break"> | ||
| <td class="table-name">Incorporation Number:</td> | ||
| <td class="table-value">{{ business.identifier }}</td> | ||
| </tr> | ||
| <tr class="no-page-break"> | ||
| <td class="table-name">Business Number:</td> | ||
| <td class="table-value">{{ business.tax_id }}</td> | ||
| </tr> | ||
| <tr class="no-page-break"> | ||
| <td class="table-name">Filing Date and Time:</td> | ||
| <td class="table-value">{{ filing_date_time }}</td> | ||
| </tr> | ||
| <tr class="no-page-break"> | ||
| <td class="table-name">Annual General Meeting (AGM) Date:</td> | ||
| <td class="table-value">{{ agm_date }}</td> | ||
| </tr> | ||
| </table> | ||
| </div> | ||
| {% if effective_date is defined %} | ||
| [[addresses.html]] | ||
|
|
||
| [[directors.html]] | ||
| {% endif %} | ||
| [[certification.html]] | ||
|
|
||
| <div class="header"> | ||
| <table class="header-table" role="presentation"> | ||
|
Check warning on line 15 in legal-api/report-templates/annualReport.html
|
||
| <tr class="no-page-break"> | ||
| <td> | ||
| [[logo.html]] | ||
| </td> | ||
| <td> | ||
| <div class="report-type">{{ header.ARFilingYear }} ANNUAL REPORT</div> | ||
| <div class="report-type-desc">{{ entityDescription }} - {{ entityAct }}</div> | ||
| </td> | ||
| </tr> | ||
| </table> | ||
| <div class="business-name-header"> | ||
| <label class="lbl-business-name"> | ||
|
Check warning on line 27 in legal-api/report-templates/annualReport.html
|
||
| {{business.legalName}} | ||
| </label> | ||
| </div> | ||
| </div> | ||
| [[common/businessDetails.html]] | ||
| {% if business.legalType == 'CP' %} | ||
| <div class="container"> | ||
| <table class="section-data section-data-table" role="presentation"> | ||
|
Check warning on line 35 in legal-api/report-templates/annualReport.html
|
||
| <tr class="no-page-break"> | ||
| <td class="col-35"> | ||
| <div class="section-sub-title"> | ||
| <span>Annual General Meeting Date:</span> | ||
| </div> | ||
| </td> | ||
| <td> | ||
| <div>{{ agm_date }}</div> | ||
| </td> | ||
| </tr> | ||
| </table> | ||
| </div> | ||
| <div class="container mt-4"> | ||
| <div class="separator"></div> | ||
| {% if effective_date is defined %} | ||
| [[addresses.html]] | ||
| <div class="separator"></div> | ||
|
|
||
| [[footer.html]] | ||
|
|
||
| [[directors.html]] | ||
| {% endif %} | ||
| [[certification.html]] | ||
| </div> | ||
| {% else %} | ||
| <div class="container"> | ||
| <div class="separator"></div> | ||
| [[bc-annual-report/legalObligations.html]] | ||
| </div> | ||
| {% endif %} | ||
| </body> | ||
| </html> | ||
This file was deleted.
This file was deleted.
This file was deleted.
|
kialj876 marked this conversation as resolved.
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,65 +1,40 @@ | ||
| [[macros.html]] | ||
|
|
||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <title>{{ meta_title }}</title> | ||
| <title>Address Change</title> | ||
| <meta charset="UTF-8"> | ||
| <meta name="author" content="BC Registries and Online Services"> | ||
| <meta name="description" content="{{ meta_subject }}"> | ||
|
|
||
| [[style.html]] | ||
|
|
||
| [[common/style.html]] | ||
| {% if enable_sandbox %} | ||
| [[common/watermark.html]] | ||
| {% endif %} | ||
| </head> | ||
|
|
||
| <body> | ||
|
|
||
| [[logo.html]] | ||
|
|
||
| <div class="column-report"> | ||
| <div class="column-report-headspace"></div> | ||
| <div class="header-blue"> | ||
| BC COOPERATIVE ADDRESS CHANGE | ||
| </div> | ||
| <div class="header-gold"> | ||
| BC Cooperative • Cooperative Association Act | ||
| </div> | ||
|
|
||
| <div class="column-report-inner"> | ||
| <div class="entity-name"> | ||
| {{ business.legalName }} | ||
| </div> | ||
|
|
||
| <!-- Struggling doing this with CSS, because weasyprint isn't laying it out the same as a browser. --> | ||
| <div class="section-data"> | ||
| <table class="section-data-table"> | ||
| <tr class="no-page-break"> | ||
| <td class="table-name">Incorporation Number:</td> | ||
| <td class="table-value">{{ business.identifier }}</td> | ||
| </tr> | ||
| <tr class="no-page-break"> | ||
| <td class="table-name">Business Number:</td> | ||
| <td class="table-value">{{ business.tax_id }}</td> | ||
| </tr> | ||
| <tr class="no-page-break"> | ||
| <td class="table-name">Filing Date and Time:</td> | ||
| <td class="table-value">{{ filing_date_time }}</td> | ||
| </tr> | ||
| <tr class="no-page-break"> | ||
| <td class="table-name">Date of Change:</td> | ||
| <td class="table-value">{{ effective_date }}</td> | ||
| </tr> | ||
| </table> | ||
| </div> | ||
|
|
||
| [[addresses.html]] | ||
|
|
||
| [[certification.html]] | ||
|
|
||
| <div class="header"> | ||
| <table class="header-table" role="presentation"> | ||
|
Check warning on line 15 in legal-api/report-templates/changeOfAddress.html
|
||
| <tr class="no-page-break"> | ||
| <td> | ||
| [[logo.html]] | ||
| </td> | ||
| <td> | ||
| <div class="report-type">ADDRESS CHANGE</div> | ||
| <div class="report-type-desc">{{entityDescription}} - {{ entityAct }}</div> | ||
| </td> | ||
| </tr> | ||
| </table> | ||
| <div class="business-name-header"> | ||
| <label class="lbl-business-name"> | ||
|
Check warning on line 27 in legal-api/report-templates/changeOfAddress.html
|
||
| {{business.legalName}} | ||
| </label> | ||
| </div> | ||
| </div> | ||
|
|
||
| [[footer.html]] | ||
|
|
||
| [[common/businessDetails.html]] | ||
| <div class="container"> | ||
| [[addresses.html]] | ||
| {% if business.legalType == 'CP' %} | ||
| [[certification.html]] | ||
| {% endif %} | ||
| </div> | ||
| </body> | ||
| </html> | ||
Uh oh!
There was an error while loading. Please reload this page.