Now you can add cancellation policy details in the Contract notification:
To do so, you will need to add the following code in your contract notification on a new line after the "endif" from line 57 in the HTML section:
{% if rental.rental_cancelation_policy %}
<tr>
<td class="padding-copy p">
<h3>Cancelation Policy</h3>
<tr>
<td>{{ rental.rental_cancelation_policy }}</td>
</tr>
<tr><td><br/></td></tr>
{% for rental_cancelation_policy_item in booking.rental_cancelation_policy_items %}
<tr>
<td>{{ rental_cancelation_policy_item.message }}</td>
</tr>
{% endfor %}
</td>
</tr>
{% endif %}
Your template should look like this after:
You should also add these lines in the Plain text version:
{% if rental.rental_cancelation_policy %}
Cancelation Policy
{{ rental.rental_cancelation_policy }}
{% for rental_cancelation_policy_item in booking.rental_cancelation_policy_items %}
{{ rental_cancelation_policy_item.message }}
{% endfor %}
{% endif %}
The result will output this way:
How is it generated?
In your BookingSync dashboard > Rentals > Rental Cancelation Policy > Cancelation policy items:
The first part is showing the content of your rental cancellation policy and the second part displays the list of penalty fees according to your settings. The dates are calculated from the booking check-in dates.
The penalty amount is the number generated based on the price, penalty percentage, and the number of days, for example:
Please reach our support team if you have any questions or need help with this.
Comments
0 comments
Please sign in to leave a comment.