{% extends "core/base.html" %} {% load static %} {% load currency_filters %} {% block title %}Choose Your Plan — SwiftPOS{% endblock %} {% block topbar_title %}Choose Plan{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if current_sub %} {% if current_sub.is_trial %}
Trial Active — Your free trial expires in {{ current_sub.days_remaining }} day{{ current_sub.days_remaining|pluralize }} ({{ current_sub.expiry_date|date:"d M Y" }}). Choose a plan to continue using SwiftPOS.
{% elif current_sub.is_expired %}
🔴
Subscription Expired — Your {{ current_sub.plan.name }} plan expired on {{ current_sub.expiry_date|date:"d M Y" }}. Please renew to restore full access.
{% endif %} {% endif %}

Choose Your Plan

Select the plan that fits your business. All prices in Nigerian Naira.

{% for cycle_key, cycle_label in cycle_choices|default:"" %}{% endfor %}
{% for plan in plans %}
{% if current_sub and current_sub.plan_id == plan.id %}
✓ Current Plan
{% elif forloop.counter == 2 %}
⭐ Recommended
{% endif %}
{{ plan.name }}
{{ plan.price_monthly|currency:0 }} /month
    {% if plan.max_orders_per_day %}
  • {{ plan.max_orders_per_day }} orders/day
  • {% else %}
  • Unlimited orders
  • {% endif %} {% if plan.max_products %}
  • {{ plan.max_products }} products
  • {% else %}
  • Unlimited products
  • {% endif %} {% if plan.feature_barcode_pos %}
  • Barcode POS{% else %}
  • Barcode POS{% endif %}
  • {% if plan.feature_profit_loss %}
  • P&L Reports{% else %}
  • P&L Reports{% endif %}
  • {% if plan.feature_audit_logs %}
  • Audit Logs{% else %}
  • Audit Logs{% endif %}
  • {% if plan.feature_multi_branch %}
  • Multi-Branch{% else %}
  • Multi-Branch{% endif %}
{% if current_sub and current_sub.plan_id == plan.id and plan.price_monthly == 0 %} {% else %} {% if current_sub and current_sub.plan_id == plan.id %} Renew Plan {% elif current_sub and plan.price_monthly > current_sub.plan.price_monthly %} Upgrade Now {% elif current_sub and plan.price_monthly < current_sub.plan.price_monthly %} Downgrade {% else %} Get Started {% endif %} {% endif %}
{% endfor %}

Need help choosing? Chat with us on WhatsApp

{% endblock %} {% block extra_js %} {% endblock %}