{% extends "tenant/layouts/base.html" %} {% block title %}Transactions{% endblock %} {% block content %}

Transactions

{% for t in transactions %} {% else %} {% endfor %}
TimeCustomerStaffTotalMethodTip
{{ t.created_at.strftime('%I:%M %p') }} {{ t.customer.name if t.customer else '—' }} {{ t.staff.name if t.staff else '—' }} ${{ "%.2f"|format(t.total) }} {{ t.payment_method.title() }} {% if t.tip_amount > 0 %}${{ "%.2f"|format(t.tip_amount) }}{% else %}—{% endif %} View
No transactions for this day.
{% endblock %}