Skip to content

Instantly share code, notes, and snippets.

@gterrill
Last active June 25, 2019 10:56
Show Gist options
  • Save gterrill/a442b7431a62e590c03d to your computer and use it in GitHub Desktop.
Save gterrill/a442b7431a62e590c03d to your computer and use it in GitHub Desktop.
Reminder template using location
<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