mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-25 22:37:18 +10:00
55 lines
1.8 KiB
HTML
55 lines
1.8 KiB
HTML
|
|
{{~#*inline "format-money"~}}
|
|
{{money-amount money}} {{money.currency}}
|
|
{{~/inline~}}
|
|
|
|
{{~#*inline "format-date"~}}
|
|
{{date date format="MMM d, YYYY"}}
|
|
{{~/inline~}}
|
|
|
|
<html>
|
|
<body>
|
|
<h1>Your booking request was accepted!</h1>
|
|
|
|
{{#with transaction}}
|
|
<p>{{provider.display-name}} has accepted your booking request for {{listing.title}} from {{> format-date date=booking.start}} to {{> format-date date=booking.end}}.</p>
|
|
|
|
<p>We have charged {{> format-money money=payin-total}} from your credit card. Here's your receipt.</p>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align: left;">Payment</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each tx-line-items}}
|
|
{{#contains include-for "customer"}}
|
|
<tr>
|
|
{{#eq "line-item/day" code}}
|
|
<td>{{> format-money money=unit-price}} × {{number quantity}} {{inflect quantity "day" "days"}}</td>
|
|
<td style="padding-left: 20px;">{{> format-money money=line-total}}</td>
|
|
{{/eq}}
|
|
{{#eq "line-item/night" code}}
|
|
<td>{{> format-money money=unit-price}} × {{number quantity}} {{inflect quantity "night" "nights"}}</td>
|
|
<td style="padding-left: 20px;">{{> format-money money=line-total}}</td>
|
|
{{/eq}}
|
|
</tr>
|
|
{{/contains}}
|
|
{{/each}}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<th style="text-align: left;">Payment total</th>
|
|
<th style="text-align: left; padding-left: 20px;">{{> format-money money=payin-total}}</th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
|
|
{{/with}}
|
|
|
|
<hr />
|
|
|
|
<p>You have received this email notification because you are a member of {{marketplace.name}}. If you no longer wish to receive these emails, please contact {{marketplace.name}} team.</p>
|
|
</body>
|
|
</html>
|