Last active
June 25, 2019 10:56
-
-
Save gterrill/a442b7431a62e590c03d to your computer and use it in GitHub Desktop.
Reminder template using location
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>Hi {{ booking.name }},</p> | |
<p>This is a reminder from {{ shop.name }} about your upcoming booking on {{ booking.start | date: "%m/%d/%Y" }}.</p> | |
<h3>Your booking:</h3> | |
<ul> | |
{% for item in booking.items %} | |
<li> | |
{{ item.quantity }} x {{ item.product.title }} on {{ booking.start | date: "%m/%d/%Y %-I:%M %p" }} | |
</li> | |
{% endfor %} | |
</ul> | |
{% if booking.location %} | |
<h3>Location</h3> | |
<a href="{{ booking.location.map_address_url }}"> | |
<img src="{{ booking.location | gmaps_img: 'zoom:16,size:225x150' | base64_img }}"> | |
{{ booking.location.address_formatted }} | |
</a><br> | |
{% endif %} | |
<p>See you then!</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment