Skip to content

Instantly share code, notes, and snippets.

@gterrill
Created September 25, 2015 23:07
Show Gist options
  • Save gterrill/fda25beebb0bf063bbc6 to your computer and use it in GitHub Desktop.
Save gterrill/fda25beebb0bf063bbc6 to your computer and use it in GitHub Desktop.
Ticket template using location
<h1>Ticket</h1>
<p>
Name: {{ booking.name }}</br>
Date: {{ booking.start | date: "%m/%d/%Y" }}
</p>
<h3>Booking Details:</h3>
<ul>
{% for item in booking.items %}
<li>
{{ item.quantity }} x {{ item.product.title }} on {{ booking.start | date: "%m/%d/%Y %-I:%M %p" }}
{% if item.product.location %}
<br/>{{ item.product.location.address }}
{% endif %}
</li>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment