diff --git a/mhr_api/report-templates/registrationCoverV2.html b/mhr_api/report-templates/registrationCoverV2.html
index d76c99b23..17ae5050e 100644
--- a/mhr_api/report-templates/registrationCoverV2.html
+++ b/mhr_api/report-templates/registrationCoverV2.html
@@ -97,16 +97,19 @@
{{ documentDescription }}
{% endif %}
-
Document Registration Number:
+
+ {% if registrationType is defined and registrationType == 'PERMIT' %}Transport Permit Number:{% else %}Document Registration Number:{% endif %}
+
{% if documentRegistrationNumber is defined and documentRegistrationNumber != '' %}
{{ documentRegistrationNumber }}
- {% elif note is defined and note.documentRegistrationNumber is defined and note.documentRegistrationNumber != '' %}
- {{ note.documentRegistrationNumber }}
{% else %}
N/A
{% endif %}
-
Document Registration Date and Time: {{ createDateTime }}
+
+ {% if registrationType is defined and registrationType == 'PERMIT' %}Date of Issue:{% else %}Document Registration Date and Time:{% endif %}
+ {{ createDateTime }}
+
Toll-Free Phone: 1-877-526-1526
diff --git a/mhr_api/report-templates/template-parts/registration/location.html b/mhr_api/report-templates/template-parts/registration/location.html
index 07aeef855..858ad6e00 100644
--- a/mhr_api/report-templates/template-parts/registration/location.html
+++ b/mhr_api/report-templates/template-parts/registration/location.html
@@ -1,6 +1,8 @@
{% if location is defined %}
- {% if registrationType not in ('EXEMPTION_RES', 'EXEMPTION_NON_RES') %}
+ {% if registrationType == 'PERMIT' %}
+
New Registered Location
+ {% elif registrationType not in ('EXEMPTION_RES', 'EXEMPTION_NON_RES') %}
Registered Location
{% endif %}
diff --git a/mhr_api/report-templates/template-parts/registration/submittingParty.html b/mhr_api/report-templates/template-parts/registration/submittingParty.html
index 7425174cd..a38cfcdfb 100644
--- a/mhr_api/report-templates/template-parts/registration/submittingParty.html
+++ b/mhr_api/report-templates/template-parts/registration/submittingParty.html
@@ -1,7 +1,9 @@
{% if submittingParty is defined %}
{% if not (registrationType == 'EXEMPTION_RES' and usergroup is defined and usergroup != 'ppr_staff') %}
-
+ {% if registrationType != 'PERMIT' %}
+
+ {% endif %}
{% endif %}
Submitting Party Information
diff --git a/mhr_api/report-templates/template-parts/v2/style.html b/mhr_api/report-templates/template-parts/v2/style.html
index 1cb5ba28a..9cdd4a190 100755
--- a/mhr_api/report-templates/template-parts/v2/style.html
+++ b/mhr_api/report-templates/template-parts/v2/style.html
@@ -673,6 +673,21 @@
padding-right: 25px;
}
+ .section-data-table-base {
+ width: 100%;
+ border-collapse: collapse;
+ }
+
+ .section-data-table-base td {
+ vertical-align: top;
+ overflow-wrap: break-word;
+ word-wrap: break-word;
+ }
+
+ .section-data-table-base td:nth-child(1) {
+ padding-left: 8px;
+ }
+
.cover-data-table {
width: 100%;
margin: 0px;
diff --git a/mhr_api/report-templates/transportPermitV2.html b/mhr_api/report-templates/transportPermitV2.html
index 1bc3c8de0..2f4dd761e 100644
--- a/mhr_api/report-templates/transportPermitV2.html
+++ b/mhr_api/report-templates/transportPermitV2.html
@@ -21,13 +21,17 @@
{{status|title}} |
- Document Registration Number: |
+ Transport Permit Number: |
{{documentRegistrationNumber}} |
- Document Registration Date and Time: |
+ Date of Issue: |
{{createDateTime}} |
+
+ Expiry Date: |
+ {% if note is defined and note.expiryDateTime is defined %} {{note.expiryDateTime}} {% endif %} |
+
Folio Number: |
@@ -42,39 +46,61 @@
+
+ Under section 17 of the Manufactured Home Act, the Registrar hereby permits the movement of the manufactured home registered
+ under {{mhrNumber}} with Serial Number(s)
+ {% if description is defined and description.sections is defined %}
+ {% for section in description.sections %}{{section.serialNumber}}{% if not loop.last %}, {% endif %}{% endfor %}
+ {% endif %}
+ to:
+
+
[[registration/location.html]]
- {% if note is defined %}
-
-
-
- Expired Date: |
- {% if note.expiryDate is defined and note.expiryDate != '' %}
- {{note.expiryDate}}
- {% else %}
- N/A
- {% endif %}
- |
-
-
- Remarks: |
-
- {% if note.remarks is defined and note.remarks != '' %}
- {{note.remarks}}
- {% else %}
- N/A
- {% endif %}
- |
-
-
-
- {% endif %}
+
+ Transport Permit Conditions
+
+
+ 1. |
+
+ If the manufactured home is permanently placed on a location other than specifically described on the transport permit,
+ the owner must advise the Registrar and provide full details of the location either
+ (a) within 3 days after the manufactured home was transported to the new location
+ or
+ (b) within 3 days after the expiration of the transport permit which ever occurs first.
+ |
+
+
+ 2. |
+
+ This permit expires 30 days after the date of issue. If the manufactured home is NOT MOVED within this time,
+ you must report the physical location of the manufactured home within 3 days after the expiration of the permit.
+ |
+
+
+ 3. |
+
+ This permit may be used for one (1) move only. A new permit must be obtained for subsequent moves.
+ |
+
+
+ 4. |
+
+ Upon leaving British Columbia, this home is Exempted from the Manufactured Home Act. The home is required to be
+ re-registered under the same number if it re-enters the Province of British Columbia.
+ |
+
+
[[registration/submittingParty.html]]
+
+
+
+ {% if status == 'EXEMPT' %}
+
+ Upon leaving British Columbia, this home is Exempted from the Manufactured Home Act. The home is required to be re-registered under the same number if it re-enters the Province of British Columbia.
+
+ {% endif %}
|