{% extends "tenant/layouts/base.html" %} {% block title %}Receipt #{{ transaction.id }}{% endblock %} {% block content %}
{{ location.name }}
{% endif %}{{ transaction.created_at.strftime('%B %d, %Y %I:%M %p') }}
Receipt #{{ transaction.id }}
{% if transaction.voided_at %}| {% if item.service %}{{ item.service.name }} {% elif item.product %}{{ item.product.name }} {% endif %} {% if item.discount_percent > 0 %} {{ item.discount_percent }}% off {% endif %} |
{% if item.discount_percent > 0 %}
|
| Savings | -${{ "%.2f"|format(transaction.discount) }} |
| Tip | ${{ "%.2f"|format(transaction.tip_amount) }} |
| Gift Card | -${{ "%.2f"|format(transaction.gift_card_amount) }} |
| Total | ${{ "%.2f"|format(transaction.total) }} |
| Payment | {{ transaction.payment_method.title() }} |