{% 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 %}
{{ current_subscription.plan.description }}
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
Select a plan that fits your business needs
per month
Billed {{ plan.get_billing_cycle_display|lower }} at ${{ plan.price }}
{{ plan.description }}
Please contact support for more information.
| Feature | {% for plan in plans %}{{ plan.name }} | {% endfor %}
|---|---|
| Monthly Price | {% for plan in plans %}${{ plan.monthly_price|floatformat:2 }} | {% endfor %}
| Max Products | {% for plan in plans %}{{ plan.max_products }} | {% endfor %}
| Max Users | {% for plan in plans %}{{ plan.max_users }} | {% endfor %}
| Storage | {% for plan in plans %}{{ plan.max_storage_mb }} MB | {% endfor %}
| Advanced Reports | {% for plan in plans %}{% if plan.has_advanced_reports %} {% else %} {% endif %} | {% endfor %}
| Bulk Operations | {% for plan in plans %}{% if plan.has_bulk_operations %} {% else %} {% endif %} | {% endfor %}
| SMS Notifications | {% for plan in plans %}{% if plan.has_sms_notifications %} {% else %} {% endif %} | {% endfor %}
| Email Support | {% for plan in plans %}{% if plan.has_email_support %} {% else %} {% endif %} | {% endfor %}
| Phone Support | {% for plan in plans %}{% if plan.has_phone_support %} {% else %} {% endif %} | {% endfor %}