mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-27 19:42:11 +10:00
16 lines
No EOL
503 B
HTML
16 lines
No EOL
503 B
HTML
|
|
{{~#*inline "format-date"~}}
|
|
{{date date format="MMM d, YYYY"}}
|
|
{{~/inline~}}
|
|
|
|
<html>
|
|
<body>
|
|
<h1>Your booking request was declined.</h1>
|
|
|
|
{{#with transaction}}
|
|
<p>Unfortunately {{provider.display-name}} decided to decline your booking request for {{listing.title}} from {{> format-date date=booking.start}} to {{> format-date date=booking.end}}. You have not been billed.</p>
|
|
{{/with}}
|
|
|
|
<p><a href="{{marketplace.url}}">Try to book something else instead</a></p>
|
|
</body>
|
|
</html> |