{% extends "core/base.html" %} {% load currency_filters %} {% block title %}Subscription — SwiftPOS{% endblock %} {% block topbar_title %}My Subscription{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if current_sub %}
{{ current_sub.plan.name }}

Your Subscription

{{ current_sub.is_trial|yesno:"Free Trial,Active Plan" }}
{% if current_sub.is_expired %}
Expired!
{% else %}
{{ current_sub.days_remaining }} days left
{% endif %}
Expires on
{{ current_sub.expiry_date|date:"d M Y" }}
{% if current_sub.pending_downgrade_plan %}
Downgrade to {{ current_sub.pending_downgrade_plan.name }} scheduled at end of cycle.
{% endif %}
Billing Cycle
{{ current_sub.get_billing_cycle_display }}
Status
{% if current_sub.is_expired %}Expired {% elif current_sub.is_trial %}Trial {% else %}Active{% endif %}
Start Date
{{ current_sub.start_date|date:"d M Y" }}
Plan Price
₦{% fmt_currency current_sub.plan.price_monthly 0 %}/mo
Plan Features
{% with plan=current_sub.plan %}
POS Terminal
Barcode POS
P&L Reports
Audit Logs
Multi-Branch
Bulk Import
Data Export
Credit Sales
Wholesale Pricing
Android App
{% endwith %}
Upgrade / Change Plan Billing History Contact Support
{% else %}

No active subscription

Get started with a free trial or choose a plan.

Choose a Plan
{% endif %} {% if transactions %}
Recent Transactions
{% for txn in transactions %} {% endfor %}
ReferencePlanAmountStatusDate
{{ 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" }}
View all transactions {% endif %}
{% endblock %}