{% extends "core/base.html" %} {% load currency_filters %} {% block title %}Billing History — SwiftPOS{% endblock %} {% block topbar_title %}Billing History{% endblock %} {% block content %}
| Reference | Plan | Cycle | Amount | Discount | Status | Date |
|---|---|---|---|---|---|---|
{{ txn.payment_reference }}
{% if txn.promo_code_used %}
Promo: {{ txn.promo_code_used }} {% endif %} |
{{ txn.plan.name }} | {{ txn.get_billing_cycle_display }} | ₦{% fmt_currency txn.final_amount 0 %} | {% if txn.discount_amount %}₦{% fmt_currency txn.discount_amount 0 %}{% else %}—{% endif %} | {% if txn.status == 'paid' %} ✓ Paid {% elif txn.status == 'pending' %} ⏳ Pending {% elif txn.status == 'failed' %} ✗ Failed {% else %} {{ txn.get_status_display }} {% endif %} |
{{ txn.created_at|date:"d M Y" }} {{ txn.created_at|date:"H:i" }} |
|
No transactions yet. |
||||||