Created
September 25, 2015 23:07
-
-
Save gterrill/fda25beebb0bf063bbc6 to your computer and use it in GitHub Desktop.
Ticket 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
<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