{% extends 'core/base.html' %} {% load static %} {% block title %}Yesterday Summary - SwiftPOS{% endblock %} {% block topbar_title %} Yesterday Summary {% endblock %} {% block content %}
| Order Details | Amount | Status | Actions |
|---|---|---|---|
|
{{ unusual.order.created_at|date:"Y-m-d H:i" }}
Payment: {{ unusual.order.get_payment_method_display }}
Flagged By: {{ unusual.flagged_by|default:"-" }}
|
{{ currency_symbol }}{{ unusual.order.final_amount|floatformat:2 }} | {% if unusual.resolved %} Resolved {% else %} Pending {% endif %} | |
| No unusual transactions flagged for this branch yesterday. | |||
| Order Details | Customer | Amount | Cashier |
|---|---|---|---|
|
{{ order.created_at|date:"Y-m-d H:i" }}
Payment: {{ order.get_payment_method_display }}
|
{{ order.customer_name|default:"Walk-in" }} | {{ currency_symbol }}{{ order.final_amount|floatformat:2 }} | {{ order.cashier }} |
| No orders were found for this branch yesterday. | |||