{% extends "core/base.html" %} {% load currency_filters %} {% block title %}Billing History — SwiftPOS{% endblock %} {% block topbar_title %}Billing History{% endblock %} {% block content %}

Billing History

Back to Subscription
{% for txn in page_obj %} {% empty %} {% endfor %}
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.

{% if page_obj.has_other_pages %}
{% if page_obj.has_previous %} ← Prev {% endif %} {{ page_obj.number }} / {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next → {% endif %}
{% endif %}
{% endblock %}