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

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

{{ subscription.plan.description }}

Plan Features:
  • {{ subscription.plan.max_products }} Products
  • {{ subscription.plan.max_users }} Users
  • {{ subscription.plan.max_storage_mb }} MB Storage
  • {% if subscription.plan.has_advanced_reports %}
  • Advanced Reports
  • {% endif %}
    {% if subscription.plan.has_bulk_operations %}
  • Bulk Operations
  • {% endif %} {% if subscription.plan.has_sms_notifications %}
  • SMS Notifications
  • {% endif %} {% if subscription.plan.has_email_support %}
  • Email Support
  • {% endif %} {% if subscription.plan.has_phone_support %}
  • Phone Support
  • {% endif %}
Subscription Status
Status: {% if subscription.is_active %}Active{% else %}Inactive{% endif %}
Started: {{ subscription.start_date|date:"M d, Y" }}
Next Billing: {{ subscription.end_date|date:"M d, Y" }}
Days Remaining: {{ subscription.days_remaining }} days

Subscription will {% if not subscription.auto_renew %}not {% endif %}automatically renew

Payment Information

Amount Paid: ${{ subscription.amount_paid }}

Payment Method: {{ subscription.payment_method|title }}

{% if subscription.payment_reference %}

Reference: {{ subscription.payment_reference }}

{% endif %}
{% if subscription.is_active %} Cancel Subscription {% endif %} Change Plan
Usage Statistics
Products Usage
Used: {{ usage.products.used }} / {{ usage.products.limit }}

{{ usage.products.percentage|floatformat:1 }}% of your product limit used

Users Usage
Used: {{ usage.users.used }} / {{ usage.users.limit }}

{{ usage.users.percentage|floatformat:1 }}% of your user limit used

Storage Usage
Available: {{ subscription.plan.max_storage_mb }} MB

Approximately 25% of storage used (estimated)

Billing History
{% if billing_history %}
{% for prev_sub in previous_subscriptions %} {% endfor %}
Date Description Amount Status Reference
{{ subscription.start_date|date:"M d, Y" }} {{ subscription.plan.name }} Plan
{{ subscription.plan.get_billing_cycle_display }} billing
${{ subscription.amount_paid }} {% if subscription.is_active %}Active{% else %}Inactive{% endif %} {{ subscription.payment_reference|default:"-" }}
{{ prev_sub.start_date|date:"M d, Y" }} {{ prev_sub.plan.name }} Plan
{{ prev_sub.plan.get_billing_cycle_display }} billing
${{ prev_sub.amount_paid }} Ended {{ prev_sub.payment_reference|default:"-" }}
{% else %}

No billing history available.

{% endif %}
Invoice Download
Invoices for your subscription will be available here. For now, please contact support if you need an invoice copy.
Need Help?
FAQ

Check our frequently asked questions

View FAQ
Email Support

Get help via email support

Email Us
Phone Support

{% if subscription.plan.has_phone_support %} Call us: +1 (555) 123-4567 {% else %} Available on Premium plans {% endif %}

{% if subscription.plan.has_phone_support %} Call Now {% else %} {% endif %}
{% endblock %}