{% extends "core/base.html" %} {% load currency_filters %} {% block title %}Subscription — SwiftPOS{% endblock %} {% block topbar_title %}My Subscription{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| Reference | Plan | Amount | Status | Date |
|---|---|---|---|---|
{{ txn.payment_reference }} |
{{ txn.plan.name }} {{ txn.get_billing_cycle_display }} |
₦{% fmt_currency txn.final_amount 0 %} | {% if txn.status == 'paid' %} {% elif txn.status == 'pending' %} {% else %}{% endif %} {{ txn.get_status_display }} | {{ txn.created_at|date:"d M Y" }} |