{% extends "core/base.html" %} {% load static %} {% block title %}Transaction History - SwiftPOS{% endblock %} {% block topbar_title %} Transaction History {% endblock %} {% block content %}
Transaction History

Search by customer or order number, filter by date or date range.

{% if orders %}
{% for order in orders %} {% endfor %}
Order # Date Time Customer Payment Total Actions
{{ order.order_number }} {{ order.created_at|date:"M d, Y" }} {{ order.created_at|date:"H:i" }} {{ order.customer_name|default:"Walk-in" }} {{ order.get_payment_method_display }} {{ currency_symbol }}{{ order.final_amount }}
{% if order.balance_amount > 0 %} {% endif %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

No transactions found for the selected filter.

{% endif %}
{% endblock %}