{% extends "core/base.html" %} {% block title %}Subscription Plans - Inventory Management System{% endblock %} {% block page_title %}Subscription Plans{% endblock %} {% block header_actions %} Back to Dashboard {% endblock %} {% block content %}
{% if current_subscription %}
Your Current Plan: {{ current_subscription.plan.name }}

${{ current_subscription.plan.price }} /{{ current_subscription.plan.get_billing_cycle_display }}

{{ current_subscription.plan.description }}

Plan Details:
  • Up to {{ current_subscription.plan.max_products }} products
  • Up to {{ current_subscription.plan.max_users }} users
  • {% if current_subscription.plan.has_advanced_reports %}
  • Advanced analytics & reports
  • {% endif %} {% if current_subscription.plan.has_email_support %}
  • Priority email support
  • {% endif %} {% if current_subscription.plan.has_sms_notifications %}
  • SMS notifications
  • {% endif %}
Subscription Status

Status: {% if current_subscription.is_active %}Active{% else %}Inactive{% endif %}

Started: {{ current_subscription.start_date|date:"M d, Y" }}

Next Billing: {{ current_subscription.end_date|date:"M d, Y" }}

Days Remaining: {{ current_subscription.days_remaining }} days

View Details {% if current_subscription.is_active %} Cancel Subscription {% endif %}
{% endif %}

Choose the Perfect Plan

Select a plan that fits your business needs

{% for plan in plans %}
{% if plan.plan_type == 'premium' or plan.plan_type == 'enterprise' %}
{{ plan.get_plan_type_display|upper }}
{% endif %}
{{ plan.name }}

${{ plan.monthly_price|floatformat:2 }}

per month

Billed {{ plan.get_billing_cycle_display|lower }} at ${{ plan.price }}

{{ plan.description }}

  • Up to {{ plan.max_products }} products
  • Up to {{ plan.max_users }} users
  • {% if plan.has_advanced_reports %}
  • Advanced reports
  • {% endif %} {% if plan.has_bulk_operations %}
  • Bulk operations
  • {% endif %} {% if plan.has_sms_notifications %}
  • SMS notifications
  • {% endif %} {% if plan.has_email_support %}
  • Email support
  • {% endif %} {% if plan.has_phone_support %}
  • Phone support
  • {% endif %}
{% if current_subscription and current_subscription.plan.id == plan.id %} {% else %} {% if plan.plan_type == 'basic' and not current_subscription %} Start Free Trial {% else %} Choose Plan {% endif %} {% endif %}
{% empty %}

No Subscription Plans Available

Please contact support for more information.

{% endfor %}
{% if plans|length > 1 %}
Plan Comparison
{% for plan in plans %} {% endfor %} {% for plan in plans %} {% endfor %} {% for plan in plans %} {% endfor %} {% for plan in plans %} {% endfor %} {% for plan in plans %} {% endfor %} {% for plan in plans %} {% endfor %} {% for plan in plans %} {% endfor %} {% for plan in plans %} {% endfor %} {% for plan in plans %} {% endfor %} {% for plan in plans %} {% endfor %}
Feature{{ plan.name }}
Monthly Price${{ plan.monthly_price|floatformat:2 }}
Max Products{{ plan.max_products }}
Max Users{{ plan.max_users }}
Storage{{ plan.max_storage_mb }} MB
Advanced Reports {% if plan.has_advanced_reports %} {% else %} {% endif %}
Bulk Operations {% if plan.has_bulk_operations %} {% else %} {% endif %}
SMS Notifications {% if plan.has_sms_notifications %} {% else %} {% endif %}
Email Support {% if plan.has_email_support %} {% else %} {% endif %}
Phone Support {% if plan.has_phone_support %} {% else %} {% endif %}
{% endif %}
Frequently Asked Questions

Yes, you can upgrade or downgrade your plan at any time. When upgrading, you'll get prorated credit for your current plan. When downgrading, changes take effect at the next billing cycle.

Yes! All new businesses start with a 14-day free trial of the Basic plan. No credit card is required to start your trial.

We accept all major credit cards (Visa, MasterCard, American Express), PayPal, and M-Pesa for Kenyan customers.
{% endblock %}